Pagekit\View\View::__get PHP 메소드

__get() 공개 메소드

Gets a global parameter.
public __get ( string $name ) : mixed
$name string
리턴 mixed
    public function __get($name)
    {
        return isset($this->globals[$name]) ? $this->globals[$name] : null;
    }