Passed
Push — master ( 60022f...79bf3c )
by Alex
51s queued 11s
created
src/Hydrator/Strategy/HydratorCollectionStrategy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -214,7 +214,7 @@
 block discarded – undo
214 214
             }
215 215
         }
216 216
 
217
-        return array_filter($collection, static fn ($item) => null !== $item);
217
+        return array_filter($collection, static fn($item) => null !== $item);
218 218
     }
219 219
 
220 220
     /**
Please login to merge, or discard this patch.
src/Hydrator/EntityHydrator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
         $identifier = $metadata->getIdentifier();
48 48
 
49 49
         if (!is_array($values) && !$values instanceof \Traversable) {
50
-            $values = (array)$values;
50
+            $values = (array) $values;
51 51
         }
52 52
 
53 53
         $collection = [];
Please login to merge, or discard this patch.