Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 222 Bytes

UndefinedThisPropertyFetch.md

File metadata and controls

13 lines (10 loc) · 222 Bytes

UndefinedThisPropertyFetch

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

<?php

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