Mercurial > hg > isophonics-drupal-site
view core/lib/Drupal/Core/Entity/EntityDescriptionInterface.php @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | af1871eacc83 |
children |
line wrap: on
line source
<?php namespace Drupal\Core\Entity; /** * Defines the interface for entities that have a description. */ interface EntityDescriptionInterface extends EntityInterface { /** * Gets the entity description. * * @return string * The entity description. */ public function getDescription(); /** * Sets the entity description. * * @param string $description * The entity description. * * @return $this */ public function setDescription($description); }