Passed
Push — master ( 4ab713...2a7161 )
by Marco
12:59 queued 11s
created
lib/Doctrine/Common/Cache/RedisCache.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
         $fetchedItems = array_combine($keys, $this->redis->mget($keys));
61 61
 
62 62
         // Redis mget returns false for keys that do not exist. So we need to filter those out unless it's the real data.
63
-        $keysToFilter = array_keys(array_filter($fetchedItems, static function ($item) : bool {
63
+        $keysToFilter = array_keys(array_filter($fetchedItems, static function($item) : bool {
64 64
             return $item === false;
65 65
         }));
66 66
 
Please login to merge, or discard this patch.