Nette\Http\SessionSection::__isset PHP Method

__isset() public method

Determines whether a variable in this session section is set.
public __isset ( $name ) : boolean
return boolean
    public function __isset($name)
    {
        if ($this->session->exists()) {
            $this->start();
        }
        return isset($this->data[$name]);
    }