mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 12:55:26 +01:00
121 B
121 B
NullPropertyAssignment
Emitted when trying to set a property on null
<?php
$a = null;
$a->foo = "bar";