FOF30\Model\Model::__set PHP Method

__set() public method

Magic setter; allows to use the name of model state keys as properties
public __set ( string $name, mixed $value ) : static
$name string The state variable key
$value mixed The state variable value
return static
    public function __set($name, $value)
    {
        return $this->setState($name, $value);
    }