Pop\Web\Session::__isset PHP Method

__isset() public method

Return the isset value of the $_SESSION global variable.
public __isset ( string $name ) : boolean
$name string
return boolean
    public function __isset($name)
    {
        return isset($_SESSION[$name]);
    }