Passed
Push — master ( ee88f9...c76a05 )
by
unknown
12:06 queued 09:46
created
src/LocalCacheAdapter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
         $this->cache[$uniqueKey] = $value;
185 185
 
186 186
         // prepend the tags with the cache key
187
-        array_walk($tags, function (&$tag) {
187
+        array_walk($tags, function(&$tag) {
188 188
             $tag = $this->cacheKey($tag);
189 189
         });
190 190
 
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
     {
237 237
 
238 238
         // prepend the tags with the cache key
239
-        array_walk($tags, function (&$tag) {
239
+        array_walk($tags, function(&$tag) {
240 240
             $tag = $this->cacheKey($tag);
241 241
         });
242 242
 
Please login to merge, or discard this patch.