コード例 #1
0
 /**
  * @param int $amount
  *
  * @return float
  */
 protected function convertCentToDecimal($amount)
 {
     return $this->currencyManager->convertCentToDecimal($amount);
 }
コード例 #2
0
ファイル: PriceFilter.php プロジェクト: spryker/Price
 /**
  * @param int $price
  *
  * @return string
  */
 public function getConvertedPrice($price)
 {
     return $this->currencyManager->format($this->currencyManager->convertCentToDecimal($price));
 }