You are here

public function PriceListType::setDescription in Commerce Pricelist 8

Sets the entity description.

Parameters

string $description: The entity description.

Return value

$this

Overrides EntityDescriptionInterface::setDescription

File

src/Entity/PriceListType.php, line 65

Class

PriceListType
Defines the Price list type entity.

Namespace

Drupal\commerce_pricelist\Entity

Code

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