Exakat\Config::__get PHP Method

__get() public method

public __get ( $name )
    public function __get($name)
    {
        if (isset($this->options[$name])) {
            $return = $this->options[$name];
        } else {
            $return = null;
        }
        return $return;
    }