public function TaxRate::setLineItemTypes in Ubercart 8.4
Line item types subject to this tax rate.
Parameters
array $line_item_types: Line item types subject to this tax rate.
Return value
$this
Overrides TaxRateInterface::setLineItemTypes
File
- uc_tax/
src/ Entity/ TaxRate.php, line 207
Class
- TaxRate
- Defines a tax rate configuration entity.
Namespace
Drupal\uc_tax\EntityCode
public function setLineItemTypes(array $line_item_types) {
$this->line_item_types = $line_item_types;
return $this;
}