Completed
Push — master ( 0c66be...0b44f9 )
by Dominik
01:39
created
src/StorageCache/ArrayStorageCache.php 1 patch
Spacing   +7 added lines, -7 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 Chubbyphp\Model\StorageCache;
6 6
 
@@ -9,12 +9,12 @@  discard block
 block discarded – undo
9 9
     /**
10 10
      * @var array
11 11
      */
12
-    private $cache = [];
12
+    private $cache = [ ];
13 13
 
14 14
     /**
15 15
      * @param array $cache
16 16
      */
17
-    public function __construct(array $cache = [])
17
+    public function __construct(array $cache = [ ])
18 18
     {
19 19
         $this->cache = $cache;
20 20
     }
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
      */
28 28
     public function set(string $id, array $entry): StorageCacheInterface
29 29
     {
30
-        $this->cache[$id] = $entry;
30
+        $this->cache[ $id ] = $entry;
31 31
 
32 32
         return $this;
33 33
     }
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
             throw EntryNotFoundException::fromId($id);
56 56
         }
57 57
 
58
-        return $this->cache[$id];
58
+        return $this->cache[ $id ];
59 59
     }
60 60
 
61 61
     /**
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
      */
66 66
     public function remove(string $id): StorageCacheInterface
67 67
     {
68
-        unset($this->cache[$id]);
68
+        unset($this->cache[ $id ]);
69 69
 
70 70
         return $this;
71 71
     }
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
      */
76 76
     public function clear(): StorageCacheInterface
77 77
     {
78
-        $this->cache = [];
78
+        $this->cache = [ ];
79 79
 
80 80
         return $this;
81 81
     }
Please login to merge, or discard this patch.