/** * Return the total tax for this item * * @param boolean $single Tax for single item or all? * * @return float */ public function tax($single = false) { $quantity = $single ? 1 : $this->quantity; return $this->tax->rate($this->price * $quantity); }