@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | */ |
77 | 77 | public function fetch(string $id): string |
78 | 78 | { |
79 | - if (! $this->contains($id)) { |
|
79 | + if (!$this->contains($id)) { |
|
80 | 80 | $this->misses++; |
81 | 81 | |
82 | 82 | throw new CacheItemNotFoundException(); |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | |
89 | 89 | public function contains(string $id): bool |
90 | 90 | { |
91 | - if (! array_key_exists($id, $this->cache)) { |
|
91 | + if (!array_key_exists($id, $this->cache)) { |
|
92 | 92 | return false; |
93 | 93 | } |
94 | 94 | |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | |
144 | 144 | private function pack() |
145 | 145 | { |
146 | - if (! $this->persistent) { |
|
146 | + if (!$this->persistent) { |
|
147 | 147 | return null; |
148 | 148 | } |
149 | 149 | |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | |
165 | 165 | private function unpack(): array |
166 | 166 | { |
167 | - if (! $this->persistent || ! $this->fileSystem->fileExists($this->cacheFilePath)) { |
|
167 | + if (!$this->persistent || !$this->fileSystem->fileExists($this->cacheFilePath)) { |
|
168 | 168 | return []; |
169 | 169 | } |
170 | 170 |