Exemple #1
0
 public function getTaxes()
 {
     $rate = $this->getTaxRate();
     $orderPrice = GC::getTaxableTotal();
     //send the price of the taxes back
     return round($orderPrice * $rate, 2);
 }