Back to Psalm

PossiblyNullPropertyAssignment

docs/running_psalm/issues/PossiblyNullPropertyAssignment.md

6.16.1224 B
Original Source

PossiblyNullPropertyAssignment

Emitted when trying to assign a property to a possibly null object

php
<?php

class A {
    /** @var ?string */
    public $foo;
}
function foo(?A $a) : void {
    $a->foo = "bar";
}