total() public method

Get the cart total including tax.
public total ( ) : float
return float
コード例 #1
0
ファイル: Checkout.php プロジェクト: falkbizz/cart
 public function getTotal()
 {
     return $this->cart->total() + $this->cart->icann() - $this->cart->getDiscount();
 }