Test Failed
Push — 147 ( 98987b...57f06f )
by Max
05:58 queued 02:45
created
fakes/RpIteratorToArray.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     ) {
25 25
         parent::__construct(
26 26
             $source,
27
-            fn (Iterator $source): array => iterator_to_array($source)
27
+            fn(Iterator $source): array => iterator_to_array($source)
28 28
         );
29 29
     }
30 30
 }
Please login to merge, or discard this patch.
fakes/The.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     public function __construct(mixed $subject) {
22 22
         parent::__construct(
23 23
             $subject,
24
-            function (mixed $subject, Closure $context): mixed {
24
+            function(mixed $subject, Closure $context): mixed {
25 25
                 $context($subject);
26 26
                 return $subject;
27 27
             }
Please login to merge, or discard this patch.
fakes/Let.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     public function __construct(mixed $subject) {
23 23
         parent::__construct(
24 24
             $subject,
25
-            fn ($subject, Closure $context): mixed => $context($subject) 
25
+            fn($subject, Closure $context): mixed => $context($subject) 
26 26
         );
27 27
     }
28 28
 }
Please login to merge, or discard this patch.