Fix some issues

This commit is contained in:
Dane Everitt 2018-12-30 12:45:57 -08:00
parent da45855034
commit 136e4b5b7b
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
3 changed files with 4 additions and 3 deletions

View file

@ -154,6 +154,6 @@ abstract class AbstractLoginController extends Controller
*/
protected function fireFailedLoginEvent(Authenticatable $user = null, array $credentials = [])
{
event(new Failed($user, $credentials));
event(new Failed('auth', $user, $credentials));
}
}