You are here

public function ProductBundleItemType::setDescription in Commerce Product Bundle 8

Sets the entity description.

Parameters

string $description: The entity description.

Return value

$this

Overrides EntityDescriptionInterface::setDescription

File

src/Entity/ProductBundleItemType.php, line 88

Class

ProductBundleItemType
Defines the product bundle item type entity.

Namespace

Drupal\commerce_product_bundle\Entity

Code

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