You are here

public function ProductBundleType::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/ProductBundleType.php, line 96

Class

ProductBundleType
Defines the product bundle type entity.

Namespace

Drupal\commerce_product_bundle\Entity

Code

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