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