PHPDaemon\Traits\StrictStaticObjectWatchdog::__set PHP Method

__set() public method

public __set ( string $prop, mixed $value ) : void
$prop string
$value mixed
return void
    public function __set($prop, $value)
    {
        throw new UndefinedPropertySetting('Trying to set undefined property ' . json_encode($prop) . ' in object of class ' . get_class($this));
    }
StrictStaticObjectWatchdog