Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 195 Bytes

DontGet.md

File metadata and controls

14 lines (10 loc) · 195 Bytes

DontGet

Prevent getting of undefined properties.

use Dont\DontGet;

class MyClass
{
    use DontGet;
}

(new MyClass)->undefinedProperty; // will throw NonGettableObject exception