Back to Psalm

UndefinedPropertyFetch

docs/running_psalm/issues/UndefinedPropertyFetch.md

6.16.1169 B
Original Source

UndefinedPropertyFetch

Emitted when getting a property on an object that does not have that property defined

php
<?php

class A {}
$a = new A();
echo $a->foo;