Passed
Push — master ( 1ac419...feafc2 )
by Pol
02:45 queued 53s
created
src/Pair.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -15,16 +15,16 @@
 block discarded – undo
15 15
 {
16 16
     public static function first(): Closure
17 17
     {
18
-        return static fn (callable $a) => $a(static fn ($b): Closure => static fn () => $b);
18
+        return static fn(callable $a) => $a(static fn($b): Closure => static fn() => $b);
19 19
     }
20 20
 
21 21
     public static function of(): Closure
22 22
     {
23
-        return static fn ($a): Closure => static fn ($b): Closure => static fn ($c) => $c($a)($b);
23
+        return static fn($a): Closure => static fn($b): Closure => static fn($c) => $c($a)($b);
24 24
     }
25 25
 
26 26
     public static function second(): Closure
27 27
     {
28
-        return static fn (callable $a) => $a(static fn (): Closure => static fn ($b) => $b);
28
+        return static fn(callable $a) => $a(static fn(): Closure => static fn($b) => $b);
29 29
     }
30 30
 }
Please login to merge, or discard this patch.