parameter types 意訳「引数の型指定のうち、暗黙的な null 許容を非推奨にする」 // 8.3以前 function foo(int $var = null) {...} // OK // 8.4 // Deprecated: Implicitly marking parameter $var as nullable is deprecated, the explicit nullable type must be used instead function foo(int $var = null) {...}