/**
  * @param int $amount
  *
  * @return float
  */
 protected function convertCentToDecimal($amount)
 {
     return $this->currencyManager->convertCentToDecimal($amount);
 }
Exemplo n.º 2
0
 /**
  * @param int $price
  *
  * @return string
  */
 public function getConvertedPrice($price)
 {
     return $this->currencyManager->format($this->currencyManager->convertCentToDecimal($price));
 }