Completed
Push — master ( b549a6...41dff4 )
by Antonio Oertel
04:59
created
src/Formattable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,5 +9,5 @@
 block discarded – undo
9 9
      *
10 10
      * @return string Returns formatted number.
11 11
      */
12
-    public function format() : string ;
12
+    public function format() : string;
13 13
 }
Please login to merge, or discard this patch.
src/DigitCalculator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@
 block discarded – undo
129 129
      */
130 130
     public function withMultipliers(array $multipliers) : DigitCalculator
131 131
     {
132
-        $multipliers = array_map(function ($multiplier) {
132
+        $multipliers = array_map(function($multiplier) {
133 133
             if (!assert(is_int($multiplier))) {
134 134
                 throw new \InvalidArgumentException("The multiplier({$multiplier}) must be integer");
135 135
             }
Please login to merge, or discard this patch.