Exemplo n.º 1
0
Arquivo: Price.php Projeto: 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);
 }