Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 215 Bytes

DontSet.md

File metadata and controls

14 lines (11 loc) · 215 Bytes

DontSet

Prevent setting of undefined properties.

use Dont\DontSet;

class MyClass
{
    use DontSet;
}
$object = new MyClass;
$object->undefinedProperty = 1; // will throw NonSettableObject exception