Exemple #1
0
 /**
  * Log the user out of the application.
  *
  * @return void 
  * @static 
  */
 public static function logout()
 {
     \Illuminate\Auth\SessionGuard::logout();
 }
Exemple #2
0
 /**
  * {@inheritDoc}
  */
 public function logout()
 {
     parent::logout();
     $this->groups = null;
     $this->roles = null;
     $this->permissions = null;
 }