Back to Psalm

PossiblyNullPropertyFetch

docs/running_psalm/issues/PossiblyNullPropertyFetch.md

6.16.1215 B
Original Source

PossiblyNullPropertyFetch

Emitted when trying to fetch a property on a possibly null object

php
<?php

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