Completed
Push — master ( ba4c77...e0502e )
by Vladimir
05:19
created
src/Cache/ArrayCache.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.