コード例 #1
0
ファイル: _ide_helper.php プロジェクト: whplay/ohmate-shop
 /**
  * Log the user out of the application.
  *
  * @return void 
  * @static 
  */
 public static function logout()
 {
     \Illuminate\Auth\SessionGuard::logout();
 }
コード例 #2
0
ファイル: Guard.php プロジェクト: vi-kon/laravel-auth
 /**
  * {@inheritDoc}
  */
 public function logout()
 {
     parent::logout();
     $this->groups = null;
     $this->roles = null;
     $this->permissions = null;
 }