NullPropertyAssignment
March 20, 2020 ยท View on GitHub
Emitted when trying to set a property on null
<?php
$a = null;
$a->foo = "bar";
March 20, 2020 ยท View on GitHub
Emitted when trying to set a property on null
<?php
$a = null;
$a->foo = "bar";