Passed
Push — master ( 0f35d9...62011e )
by Tim
03:47
created
src/LocalCacheAdapter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.