![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/clinic.corals.io/vendor/lab404/laravel-impersonate/src/Guard/ |
<?php namespace Lab404\Impersonate\Guard; use Illuminate\Auth\SessionGuard as BaseSessionGuard; use Illuminate\Contracts\Auth\Authenticatable; class SessionGuard extends BaseSessionGuard { /** * Log a user into the application without firing the Login event. * * @param \Illuminate\Contracts\Auth\Authenticatable $user * @return void */ public function quietLogin(Authenticatable $user) { $this->updateSession($user->getAuthIdentifier()); $this->setUser($user); } /** * Logout the user without updating remember_token * and without firing the Logout event. * * @param void * @return void */ public function quietLogout() { $this->clearUserDataFromStorage(); $this->user = null; $this->loggedOut = true; } }