Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 180 Bytes

UndefinedPropertyAssignment.md

File metadata and controls

11 lines (8 loc) · 180 Bytes

UndefinedPropertyAssignment

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

<?php

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