コード例 #1
0
ファイル: FeesSet.php プロジェクト: rnsaney/research-php
 /**
  * @return string
  */
 public function getFormattedNetIncome()
 {
     return FormatUtils::formatPrice($this->netIncome);
 }
コード例 #2
0
 public function testFormatPriceSpecial()
 {
     $price = 40;
     $price = FormatUtils::formatPrice($price, "^");
     $this->assertEquals($price, "^40.00");
 }