@@ -183,7 +183,7 @@ discard block |
||
183 | 183 | $this->cache[$uniqueKey] = $value; |
184 | 184 | |
185 | 185 | // prepend the tags with the cache key |
186 | - array_walk($tags, function (&$tag) { |
|
186 | + array_walk($tags, function(&$tag) { |
|
187 | 187 | $tag = $this->cacheKey($tag); |
188 | 188 | }); |
189 | 189 | |
@@ -235,7 +235,7 @@ discard block |
||
235 | 235 | { |
236 | 236 | |
237 | 237 | // prepend the tags with the cache key |
238 | - array_walk($tags, function (&$tag) { |
|
238 | + array_walk($tags, function(&$tag) { |
|
239 | 239 | $tag = $this->cacheKey($tag); |
240 | 240 | }); |
241 | 241 |
@@ -123,7 +123,7 @@ |
||
123 | 123 | |
124 | 124 | // query whether or not the value is available either per unique key or reference |
125 | 125 | $this->assertTrue($this->localCacheAdapter->isCached($uniqueKey)); |
126 | - $this->assertTrue($this->localCacheAdapter->isCached($ref));; |
|
126 | + $this->assertTrue($this->localCacheAdapter->isCached($ref)); ; |
|
127 | 127 | } |
128 | 128 | |
129 | 129 | /** |