<?php namespace Illuminate\Auth\Events; use Illuminate\Queue\SerializesModels; class Logout { use SerializesModels; /** * The authentication guard name. * * @var string */ public $guard; /** * The authenticated user. * * @var \Illuminate\Contracts\Auth\Authenticatable */ public $user; /** * Create a new event instance. * * @param string $guard * @param \Illuminate\Contracts\Auth\Authenticatable $user * @return void */ public function __construct($guard, $user) { $this->user = $user; $this->guard = $guard; } }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
Attempting.php | File | 788 B | 0644 |
|
Authenticated.php | File | 691 B | 0644 |
|
CurrentDeviceLogout.php | File | 697 B | 0644 |
|
Failed.php | File | 871 B | 0644 |
|
Lockout.php | File | 454 B | 0644 |
|
Login.php | File | 887 B | 0644 |
|
Logout.php | File | 684 B | 0644 |
|
OtherDeviceLogout.php | File | 695 B | 0644 |
|
PasswordReset.php | File | 499 B | 0644 |
|
Registered.php | File | 510 B | 0644 |
|
Validated.php | File | 720 B | 0644 |
|
Verified.php | File | 503 B | 0644 |
|