<?php namespace Illuminate\Auth\Events; class Failed { /** * The authentication guard name. * * @var string */ public $guard; /** * The user the attempter was trying to authenticate as. * * @var \Illuminate\Contracts\Auth\Authenticatable|null */ public $user; /** * The credentials provided by the attempter. * * @var array */ public $credentials; /** * Create a new event instance. * * @param string $guard * @param \Illuminate\Contracts\Auth\Authenticatable|null $user * @param array $credentials * @return void */ public function __construct($guard, $user, $credentials) { $this->user = $user; $this->guard = $guard; $this->credentials = $credentials; } }
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 |
|