You are here

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

Code

public function setId($id) {
  $this->id = $id;
  return $this;
}