2017-10-12 log

PHP 7 Up and Running: EP5 The Null Coalesce Operator
$name = $_GET['name'] ?? 'david';
PHP 7 Up and Running: EP6 Grouped Imports
use \App\{Bar, Foo};
PHP 7 Up and Running: EP7 Anonymous Classes
$app = new Application;
$app->setLogger(new class implements Logger {
  public function log($message) {

  }
});

2017-10-10 log

PHP 7 Up and Running EP3 Return Type Declarations

PHP 7 Up and RunningEP4 Spaceships

効率的なWebアプリケーションの作り方 12章~ 読了
レガシーコード改善ガイド

レガシーコード改善のススメ

読書の優先順位は後回し、先にコードコンプリートを読んでいこう