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
|
@ -242,6 +242,6 @@ class LoginController extends Controller
|
||||||
*/
|
*/
|
||||||
private function fireFailedLoginEvent(Authenticatable $user = null, array $credentials = [])
|
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 New Issue