예제 #1
0
 /**
  * Checks whether provided customer needs to be taxed.
  *
  * @param Customer $customer Customer to check.
  * @return boolean Whether customer needs to be taxed.
  */
 public function isTaxable(Customer $customer)
 {
     return $this->service->isTaxable($customer);
 }