You are here

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\Entity

Code

public function isForShippable() {
  return (bool) $this->shippable;
}