Cartalyst\Sentinel\Sessions\NativeSession::forgetSession PHP Method

forgetSession() protected method

Forgets the Sentinel session from the global $_SESSION.
protected forgetSession ( ) : void
return void
    protected function forgetSession()
    {
        if (isset($_SESSION[$this->key])) {
            unset($_SESSION[$this->key]);
        }
    }