diff options
author | Lee Rowlands | 2017-12-07 22:05:10 (GMT) |
---|---|---|
committer | Lee Rowlands | 2017-12-07 22:05:10 (GMT) |
commit | bc1e39c66bbe1c5125e4360beddebf3834f899f8 (patch) | |
tree | 704a48b71909a4701cda6946e63d06eb3727b0b8 | |
parent | 1aab6ab23d97336d3487d84d30419b6830467b78 (diff) |
Issue #2929076 by marcoscano: Fix wrong \Drupal\Core\Entity\EntityTypeInterface::getBundleLabel() docblock
-rw-r--r-- | core/lib/Drupal/Core/Entity/EntityTypeInterface.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/lib/Drupal/Core/Entity/EntityTypeInterface.php b/core/lib/Drupal/Core/Entity/EntityTypeInterface.php index c8a28b4..6d398d7 100644 --- a/core/lib/Drupal/Core/Entity/EntityTypeInterface.php +++ b/core/lib/Drupal/Core/Entity/EntityTypeInterface.php @@ -547,8 +547,8 @@ interface EntityTypeInterface extends PluginDefinitionInterface { /** * Gets the label for the bundle. * - * @return string|null - * The bundle label, or NULL if none exists. + * @return string + * The bundle label. */ public function getBundleLabel(); |