public function FeaturesBundle::setDescription in Features 8.3
Same name and namespace in other branches
- 8.4 src/Entity/FeaturesBundle.php \Drupal\features\Entity\FeaturesBundle::setDescription()
Sets the description of a bundle.
Parameters
string $description: The description of a bundle.
Overrides FeaturesBundleInterface::setDescription
See also
\Drupal\features\FeaturesBundleInterface::getDescription()
File
- src/
Entity/ FeaturesBundle.php, line 174
Class
- FeaturesBundle
- Defines a features bundle.
Namespace
Drupal\features\EntityCode
public function setDescription($description) {
$this->description = $description;
}