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