Passed
Push — master ( eef258...0db4c3 )
by Antonio Manuel Hernández
03:08 queued 47s
created
lib/MoneyFormatter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
         $iso = $this->iso4217->getByAlpha3($money->getCurrency()->getCode());
26 26
         $decimals = $iso['exp'];
27 27
         $dividend = pow(10, $decimals);
28
-        return $money->getAmount() / $dividend;
28
+        return $money->getAmount()/$dividend;
29 29
     }
30 30
 
31 31
     public function toString(Money $money)
Please login to merge, or discard this patch.