|
@@ -131,7 +131,7 @@ discard block |
|
|
block discarded – undo |
|
131
|
131
|
// If we've already retrieved the user for the current request we can just |
|
132
|
132
|
// return it back immediately. We do not want to fetch the user data on |
|
133
|
133
|
// every call to this method because that would be tremendously slow. |
|
134
|
|
- if (! is_null($this->user)) { |
|
|
134
|
+ if (!is_null($this->user)) { |
|
135
|
135
|
return $this->user; |
|
136
|
136
|
} |
|
137
|
137
|
|
|
@@ -139,7 +139,7 @@ discard block |
|
|
block discarded – undo |
|
139
|
139
|
|
|
140
|
140
|
$token = $this->token(); |
|
141
|
141
|
|
|
142
|
|
- if (! is_null($token)) { |
|
|
142
|
+ if (!is_null($token)) { |
|
143
|
143
|
if ($this->provider instanceof ChecksClaims) { |
|
144
|
144
|
$user = $this->provider->retrieveByClaims($token->getClaims()); |
|
145
|
145
|
} else { |
Please login to merge, or discard this patch.