@@ -267,7 +267,7 @@ discard block |
||
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 |
||
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 | /** |