Passed
Push — master ( 68fa81...0f2301 )
by Ollie
13:55 queued 07:45
created
src/JWTGuard.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Commands/KeyGenerateCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.