예제 #1
0
파일: Price.php 프로젝트: ayeo/price
 /**
  * @param float $gross
  * @param integer $taxValue
  * @param string $currencySymbol
  * @return Price
  */
 public static function buildByGross($gross, $taxValue, $currencySymbol)
 {
     $tax = new Tax($taxValue);
     return new Price($tax->calculateNett($gross), $gross, $currencySymbol, $taxValue);
 }