コード例 #1
0
ファイル: Money.php プロジェクト: brick/money
 /**
  * Returns a string containing the value of this money in minor units.
  *
  * Example: 123.45 USD will return '12345'.
  *
  * @return string
  */
 public function getAmountMinor()
 {
     return $this->amount->unscaledValue();
 }