mirror of
https://github.com/danog/psalm.git
synced 2024-12-11 00:39:38 +01:00
218 B
218 B
PossiblyNullPropertyAssignment
Emitted when trying to assign a property to a possibly null object
class A {
/** @var ?string */
public $foo;
}
function foo(?A $a) : void {
$a->foo = "bar";
}