Passed
Push — master ( 389532...ebd20a )
by Pol
23:16 queued 21:10
created
src/Numeral.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,8 +97,7 @@
 block discarded – undo
97 97
     public static function toNumeral(int $n): Closure
98 98
     {
99 99
         return 0 === $n ?
100
-            Numeral::zero() :
101
-            Numeral::succ()(Numeral::toNumeral($n - 1));
100
+            Numeral::zero() : Numeral::succ()(Numeral::toNumeral($n - 1));
102 101
     }
103 102
 
104 103
     public static function two(): Closure
Please login to merge, or discard this patch.