Passed
Push — develop ( ee6060...a91c6b )
by Brent
05:44
created
src/Brendt/Stitcher/Adapter/FilterAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
             $entries = $this->getData($page->getVariable($variable)) ?? [];
43 43
 
44 44
             foreach ($filters as $field => $value) {
45
-                $entries = array_filter($entries, function ($entry) use ($field, $value) {
45
+                $entries = array_filter($entries, function($entry) use ($field, $value) {
46 46
                     return isset($entry[$field]) && $entry[$field] == $value;
47 47
                 });
48 48
             }
Please login to merge, or discard this patch.