Passed
Pull Request — master (#18)
by
unknown
02:45
created
src/Controller/Component/CurrencyConverterComponent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -159,7 +159,7 @@
 block discarded – undo
159 159
             $fraction = ($number - $n);
160 160
             if ($fraction != 0) {
161 161
                 $step = 1 / $this->round;
162
-                $decimal = (((int)($fraction / $step) + 1) * $step);
162
+                $decimal = (((int) ($fraction / $step) + 1) * $step);
163 163
                 $number = $n + $decimal;
164 164
             }
165 165
         }
Please login to merge, or discard this patch.