| 1 | <?php |
||
| 8 | class SessionGuard extends BaseSessionGuard |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Log a user into the application without firing the Login event. |
||
| 12 | * |
||
| 13 | * @param \Illuminate\Contracts\Auth\Authenticatable $user |
||
| 14 | * @return void |
||
| 15 | */ |
||
| 16 | public function quietLogin(Authenticatable $user) |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Logout the user without updating remember_token |
||
| 25 | * and without firing the Logout event. |
||
| 26 | * |
||
| 27 | * @param void |
||
| 28 | * @return void |
||
| 29 | */ |
||
| 30 | public function quietLogout() |
||
| 38 | } |
||
| 39 |