Pantheon\Terminus\Session\Session::get PHP 메소드

get() 공개 메소드

Returns given data property or default if DNE.
public get ( string $key ) : mixed
$key string Name of property to return
리턴 mixed
    public function get($key)
    {
        if (isset($this->data->{$key})) {
            return $this->data->{$key};
        }
        return null;
    }