@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | */ |
209 | 209 | public function getCookieJar(): CookieJar |
210 | 210 | { |
211 | - if (! isset($this->cookie)) { |
|
211 | + if ( ! isset($this->cookie)) { |
|
212 | 212 | throw new RuntimeException('Cookie jar has not been set.'); |
213 | 213 | } |
214 | 214 | |
@@ -303,7 +303,7 @@ discard block |
||
303 | 303 | $validator->setAudience(config('app.url')); |
304 | 304 | $validator->setIssuer(config('app.url')); |
305 | 305 | |
306 | - if (! $token->validate($validator)) { |
|
306 | + if ( ! $token->validate($validator)) { |
|
307 | 307 | return false; |
308 | 308 | } |
309 | 309 | |
@@ -381,7 +381,7 @@ discard block |
||
381 | 381 | |
382 | 382 | $token = (new Parser)->parse($jwt); |
383 | 383 | |
384 | - if (! $this->validateToken($token)) { |
|
384 | + if ( ! $this->validateToken($token)) { |
|
385 | 385 | return null; |
386 | 386 | } |
387 | 387 |
@@ -46,7 +46,7 @@ |
||
46 | 46 | return; |
47 | 47 | } |
48 | 48 | |
49 | - if (! $this->setEnvVariable($envKey, $key)) { |
|
49 | + if ( ! $this->setEnvVariable($envKey, $key)) { |
|
50 | 50 | return; |
51 | 51 | } |
52 | 52 |