@@ -63,23 +63,23 @@ public function __call($method, $parameters)
63
63
}
64
64
65
65
/**
66
- * @inheritDoc
66
+ * {@inheritdoc}
67
67
*/
68
68
public function retrieveById ($ identifier )
69
69
{
70
70
return $ this ->eloquent ->retrieveById ($ identifier );
71
71
}
72
72
73
73
/**
74
- * @inheritDoc
74
+ * {@inheritdoc}
75
75
*/
76
76
public function retrieveByToken ($ identifier , $ token )
77
77
{
78
78
return $ this ->eloquent ->retrieveByToken ($ identifier , $ token );
79
79
}
80
80
81
81
/**
82
- * @inheritDoc
82
+ * {@inheritdoc}
83
83
*/
84
84
public function updateRememberToken (Authenticatable $ user , $ token )
85
85
{
@@ -133,12 +133,12 @@ public function validateCredentials(Authenticatable $model, array $credentials)
133
133
if (
134
134
$ model ->exists
135
135
&& $ this ->isFallingBack ()
136
- && !$ this ->user instanceof User
136
+ && ! $ this ->user instanceof User
137
137
) {
138
138
return $ this ->eloquent ->validateCredentials ($ model , $ credentials );
139
139
}
140
140
141
- if (!Resolver::authenticate ($ this ->user , $ credentials )) {
141
+ if (! Resolver::authenticate ($ this ->user , $ credentials )) {
142
142
return false ;
143
143
}
144
144
@@ -147,7 +147,7 @@ public function validateCredentials(Authenticatable $model, array $credentials)
147
147
// Here we will perform authorization on the LDAP user. If all
148
148
// validation rules pass, we will allow the authentication
149
149
// attempt. Otherwise, it is automatically rejected.
150
- if (!$ this ->passesValidation ($ this ->user , $ model )) {
150
+ if (! $ this ->passesValidation ($ this ->user , $ model )) {
151
151
Event::dispatch (new AuthenticationRejected ($ this ->user , $ model ));
152
152
153
153
return false ;
0 commit comments