@@ -15,16 +15,16 @@ |
||
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 | } |