public function TaxRate::setId in Ubercart 8.4
Sets the tax rate ID.
Parameters
string $id: The tax rate ID.
Return value
$this
Overrides TaxRateInterface::setId
File
- uc_tax/
src/ Entity/ TaxRate.php, line 147
Class
- TaxRate
- Defines a tax rate configuration entity.
Namespace
Drupal\uc_tax\EntityCode
public function setId($id) {
$this->id = $id;
return $this;
}