@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace AcquiroPay\Cache; |
6 | 6 | |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | |
14 | 14 | public function remember(string $key, int $minutes, Closure $callback) |
15 | 15 | { |
16 | - if(isset($this->items[$key])) { |
|
16 | + if (isset($this->items[$key])) { |
|
17 | 17 | return $this->items[$key]; |
18 | 18 | } |
19 | 19 |