You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
413 B
PHP

<?php
/**
* Created by PhpStorm.
* User: eater
* Date: 4/2/16
* Time: 8:57 PM
*/
namespace Eater\Glim\Handler;
class Logout extends Main
{
public function handle()
{
/* @var \Aura\Session\Session $session */
$session = $this->get('session');
$segment = $session->getSegment('main');
$segment->set('userId', null);
return $this->redirect('/login');
}
}