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