Fixed Failed event
Thank you very much Laravel for not pointing out the changes to be made when upgrading from 5.6 to 5.7
This commit is contained in:
parent
2d7e889bcc
commit
adcf0c9fee
1 changed files with 1 additions and 1 deletions
|
@ -242,6 +242,6 @@ class LoginController extends Controller
|
|||
*/
|
||||
private function fireFailedLoginEvent(Authenticatable $user = null, array $credentials = [])
|
||||
{
|
||||
event(new Failed($user, $credentials));
|
||||
event(new Failed(config('auth.defaults.guard'), $user, $credentials));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue