Passed
Push — master ( 3bd819...ba8b62 )
by Jitendra
02:46
created
src/ValidatesJWT.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
     {
74 74
         $timestamp = $this->timestamp ?: \time();
75 75
         $checks    = [
76
-            ['exp', $this->leeway /*          */ , static::ERROR_TOKEN_EXPIRED, 'Expired'],
76
+            ['exp', $this->leeway /*          */, static::ERROR_TOKEN_EXPIRED, 'Expired'],
77 77
             ['iat', $this->maxAge - $this->leeway, static::ERROR_TOKEN_EXPIRED, 'Expired'],
78 78
             ['nbf', $this->maxAge - $this->leeway, static::ERROR_TOKEN_NOT_NOW, 'Not now'],
79 79
         ];
Please login to merge, or discard this patch.