Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 170 Bytes

UndefinedPropertyFetch.md

File metadata and controls

11 lines (8 loc) · 170 Bytes

UndefinedPropertyFetch

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

<?php

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