total() 공개 메소드

Get the cart total including tax.
public total ( ) : float
리턴 float
예제 #1
0
파일: Checkout.php 프로젝트: falkbizz/cart
 public function getTotal()
 {
     return $this->cart->total() + $this->cart->icann() - $this->cart->getDiscount();
 }