Use php-cs-fixer changes

This commit is contained in:
DariusIII
2020-02-10 02:02:42 +01:00
parent f0d7c96c0d
commit 7e5f28032f
@@ -69,6 +69,7 @@ class LoginController extends Controller
if ($this->hasTooManyLoginAttempts($request)) {
$this->fireLockoutEvent($request);
Session::flash('message', 'You have failed to login too many times.Try again in '.$this->decayMinutes().' minutes.');
return $this->showLoginForm();
}
@@ -89,6 +90,7 @@ class LoginController extends Controller
if (! $user->isVerified() || $user->isPendingVerification()) {
Session::flash('message', 'You have not verified your email address!');
return $this->showLoginForm();
}