@@ -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 |