Passed
Pull Request — master (#41)
by BENOIT
02:23 queued 47s
created
src/IterableObject.php 1 patch
Spacing   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,9 +40,8 @@
 block discarded – undo
40 40
     public function filter(?callable $filter = null): self
41 41
     {
42 42
         if ($this->iterable instanceof Traversable) {
43
-            $filter ??=
44
-                /** @param mixed $value */
45
-                static function ($value): bool {
43
+            $filter ??= /** @param mixed $value */
44
+                static function($value): bool {
46 45
                     return (bool) $value;
47 46
                 };
48 47
 
Please login to merge, or discard this patch.