| to conveniently provide its functionality to your applications.
|
*/
-
- use AuthenticatesUsers { logout as traitLogout; }
+ use AuthenticatesUsers {
+ logout as traitLogout;
+ }
/**
* Redirection paths.
// If the class is using the ThrottlesLogins trait, we can automatically throttle
// the login attempts for this application. We'll key this by the username and
// the IP address of the client making these requests into this application.
- if (method_exists($this, 'hasTooManyLoginAttempts') &&
- $this->hasTooManyLoginAttempts($request)) {
+ if (
+ method_exists($this, 'hasTooManyLoginAttempts') &&
+ $this->hasTooManyLoginAttempts($request)
+ ) {
$this->fireLockoutEvent($request);
Activity::logFailedLogin($username);