MyQEE\Server\RPC\Client::__set PHP Method

__set() public method

public __set ( $name, $value )
    function __set($name, $value)
    {
        if ($name[0] === '_') {
            throw new \Exception("do not allow set {$name}");
        }
        return $this->__send('set', $name, $value);
    }