Back to Psalm

UndefinedThisPropertyFetch

docs/running_psalm/issues/UndefinedThisPropertyFetch.md

6.16.1221 B
Original Source

UndefinedThisPropertyFetch

Emitted when getting a property for an object in one of that object’s methods when no such property exists

php
<?php

class A {
    function foo() {
        echo $this->foo;
    }
}