
 Yii 2.0.14 - Under the hood, more than a hundred improvements and fixes in almost all components of the framework. In addition, this is the latest release in version Yii 2.0, containing improvements. In the future, the core team will concentrate on developing version 2.1.immutable class Email { public $email; public function __construct ($email) { $this->email = $email; } } $email = new Email("foo@php.net"); $email->email = "bar@php.net" // Call will result in Fatal Error  class User { private $id; public immutable $email; public function __construct ($id, $email) { $this->id = $id; $this->email = $email; } } 
 PaEndpointBundle - an alternative to symfony controllers
 Asynchronous PHP: Why?
 translation .
 Migrate API and what it eat. Using the example of the Drupal 7 forum migration. Part 1
 CleanTalk, WordPress Security Launch
 PSR-7 framework: Template engines and layout
 We expand automation in a couple of hours: PHPUnit, Selenium, ComposerThanks for attention!
If you notice an error or inaccuracy - please inform the PM .
Write questions and suggestions by mail or twitter .
Send link
Search links for all digests
← Previous release: PHP Digest number 125
Source: https://habr.com/ru/post/349926/
All Articles