You are here

public function TaxRate::setLabel in Ubercart 8.4

The tax rate label.

Parameters

string $label: The tax rate label.

Return value

$this

Overrides TaxRateInterface::setLabel

File

uc_tax/src/Entity/TaxRate.php, line 162

Class

TaxRate
Defines a tax rate configuration entity.

Namespace

Drupal\uc_tax\Entity

Code

public function setLabel($label) {
  $this->label = $label;
  return $this;
}