PHP RFCs Implemented (7.2): Allow abstract function override (https://wiki.php.net/rfc/allow-abstract-function- override) abstract class A { abstract function bar(stdClass $x); } abstract class B extends A { abstract function bar($x): stdClass; } class C extends B { function bar($x): stdClass{} } // Fatal error: Can't inherit abstract function A::bar() // (previously declared abstract in B)
PHP RFCs Under Discussion: UUID (https://wiki.php.net/rfc/uuid) “Provide a UUID implementation as part of the PHP standard module…” (implement https://github.com/ramsey/uuid into core)
PHPUnit 6.2.0 4 Bug fixes 4 Better support for counting non-Iterator Traversable objects 4 Add support for disabling the conversion of E_DEPRECATED to exceptions 4 Add --no-logging option to disable logging https://github.com/sebastianbergmann/phpunit/wiki/Release- Announcement-for-PHPUnit-6.2.0
CMS: Magento 2.0.14 4 Support for MasterCard BIN number expansion 4 Resolution of multiple high priority and critical security issues 2.1.7 4 Resolution of multiple high priority and critical security issues 4 Reversion of the changes to image resizing that we introduced in 2.1.6
Notable News & Articles 4 How to Go From Development to Deployment with Docker 4 Controllers and Domain Exceptions 4 What is PSR-7 and How to Use It 4 Web Developer Security Checklist 4 PHP Versions Stats - 2017.1 Edition 4 Generate a JSON Feed with Laravel 4 Laravel 5.5 Gets Improvements with the Default Error Views 4 What Is WP-CLI? A Beginner’s Guide 4 15 years of Xdebug