@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | /** |
32 | 32 | * @throws InvalidArgumentException |
33 | 33 | */ |
34 | - public function get(string $cacheKey, callable $callback, DateInterval|int $expiresAfter = null): mixed |
|
34 | + public function get(string $cacheKey, callable $callback, DateInterval | int $expiresAfter = null): mixed |
|
35 | 35 | { |
36 | 36 | $cacheItem = $this->cacheInstance->getItem($cacheKey); |
37 | 37 | |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | /** |
54 | 54 | * @throws InvalidArgumentException |
55 | 55 | */ |
56 | - public function __invoke(string $cacheKey, callable $callback, DateInterval|int $expiresAfter = null): mixed |
|
56 | + public function __invoke(string $cacheKey, callable $callback, DateInterval | int $expiresAfter = null): mixed |
|
57 | 57 | { |
58 | 58 | return $this->get($cacheKey, $callback, $expiresAfter); |
59 | 59 | } |