Completed
Push — master ( 609bd4...7ef3ac )
by LEUNG
07:43 queued 03:55
created
src/Jwt.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
      */
268 268
     public function setCacheIssuedAt($jwt_id, $value)
269 269
     {
270
-        $key = $this->ssoCachePrefix . '-' . $jwt_id;
270
+        $key = $this->ssoCachePrefix.'-'.$jwt_id;
271 271
         $ttl = $this->ttl() + $this->notBefore();
272 272
 
273 273
         $this->app->cache->set($key, $value, $ttl);
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
      */
283 283
     protected function getCacheIssuedAt($jwt_id)
284 284
     {
285
-        return $this->app->cache->get($this->ssoCachePrefix . '-' . $jwt_id);
285
+        return $this->app->cache->get($this->ssoCachePrefix.'-'.$jwt_id);
286 286
     }
287 287
 
288 288
     /**
Please login to merge, or discard this patch.