Mercurial > hg > isophonics-drupal-site
comparison core/modules/taxonomy/src/TermInterface.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | c2387f117808 |
children | af1871eacc83 |
comparison
equal
deleted
inserted
replaced
16:c2387f117808 | 17:129ea1e6d783 |
---|---|
2 | 2 |
3 namespace Drupal\taxonomy; | 3 namespace Drupal\taxonomy; |
4 | 4 |
5 use Drupal\Core\Entity\ContentEntityInterface; | 5 use Drupal\Core\Entity\ContentEntityInterface; |
6 use Drupal\Core\Entity\EntityChangedInterface; | 6 use Drupal\Core\Entity\EntityChangedInterface; |
7 use Drupal\Core\Entity\EntityPublishedInterface; | |
7 | 8 |
8 /** | 9 /** |
9 * Provides an interface defining a taxonomy term entity. | 10 * Provides an interface defining a taxonomy term entity. |
10 */ | 11 */ |
11 interface TermInterface extends ContentEntityInterface, EntityChangedInterface { | 12 interface TermInterface extends ContentEntityInterface, EntityChangedInterface, EntityPublishedInterface { |
12 | 13 |
13 /** | 14 /** |
14 * Gets the term's description. | 15 * Gets the term's description. |
15 * | 16 * |
16 * @return string | 17 * @return string |