Aerys\Server.Server.::__set PHP Method

__set() public method

public __set ( string $prop, $val )
$prop string
                    public function __set(string $prop, $val)
                    {
                        if ($this->_initialized) {
                            throw new \RuntimeException("Cannot add options after server has STARTED.");
                        }
                        $this->{$prop} = $val;
                    }
Server.Server.