Passed
Push — feature/51 ( ffcada...15fa2a )
by Max
02:30
created
src/TransparentIterator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,14 +21,14 @@
 block discarded – undo
21 21
      * 
22 22
      * @var Iterator<TKey, TValue>|Indifferent<Iterator<TKey, TValue>>
23 23
      */
24
-    private Iterator|Indifferent $origin;
24
+    private Iterator | Indifferent $origin;
25 25
 
26 26
     /**
27 27
      * Ctor.
28 28
      *
29 29
      * @param Iterator<TKey, TValue>|Indifferent<Iterator<TKey, TValue>> $iterable
30 30
      */
31
-    public function __construct(Iterator|Indifferent $iterable)
31
+    public function __construct(Iterator | Indifferent $iterable)
32 32
     {
33 33
         $this->origin = $iterable;
34 34
     }
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
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
         parent::__construct(
28 28
             $subject,
29 29
             $context,
30
-            function (mixed $subject, Closure $context): mixed {
30
+            function(mixed $subject, Closure $context): mixed {
31 31
                 $context($subject);
32 32
                 return $subject;
33 33
             }
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
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
         parent::__construct(
29 29
             $subject,
30 30
             $context,
31
-            fn (mixed $subject, Closure $context): mixed => $context($subject)
31
+            fn(mixed $subject, Closure $context): mixed => $context($subject)
32 32
         );
33 33
     }
34 34
 }
Please login to merge, or discard this patch.