コード例 #1
0
ファイル: DefaultContext.php プロジェクト: brick/money
 /**
  * {@inheritdoc}
  */
 public function applyTo(BigNumber $amount, Currency $currency, $currentScale)
 {
     return $amount->toScale($currency->getDefaultFractionDigits(), $this->roundingMode);
 }
コード例 #2
0
ファイル: FixedContext.php プロジェクト: brick/money
 /**
  * {@inheritdoc}
  */
 public function applyTo(BigNumber $amount, Currency $currency, $currentScale)
 {
     return $amount->toScale($this->scale, $this->roundingMode);
 }