コード例 #1
0
ファイル: AuthController.php プロジェクト: sthapa123/basalt
 public function logout()
 {
     $this->authorize();
     $authenticator = new Authenticator($this->userMapper);
     $authenticator->logOut();
     return $this->redirect('login');
 }