You are here

public function ShippingRate::setDescription in Commerce Shipping 8.2

Sets the description.

Parameters

string $description: The description.

Return value

$this

File

src/ShippingRate.php, line 198

Class

ShippingRate
Represents a shipping rate.

Namespace

Drupal\commerce_shipping

Code

public function setDescription(string $description) {
  $this->description = $description;
  return $this;
}