Given code ```php class A { } class B { /** @var A **/ public $a; public function __construct() { } } ``` Where property B::$a cannot be null by definition, add an error if that property is not set at the end of the constructor.