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