public function TaxRate::isForShippable in Ubercart 8.4
If the tax applies only to shippable products.
Return value
bool TRUE if the tax applies only to shippable products.
Overrides TaxRateInterface::isForShippable
File
- uc_tax/
src/ Entity/ TaxRate.php, line 260
Class
- TaxRate
- Defines a tax rate configuration entity.
Namespace
Drupal\uc_tax\EntityCode
public function isForShippable() {
return (bool) $this->shippable;
}