diff --git a/core/lib/Drupal/Core/Entity/Annotation/EntityType.php b/core/lib/Drupal/Core/Entity/Annotation/EntityType.php index 4356981..2c27ccb 100644 --- a/core/lib/Drupal/Core/Entity/Annotation/EntityType.php +++ b/core/lib/Drupal/Core/Entity/Annotation/EntityType.php @@ -12,11 +12,6 @@ /** * Defines an Entity type annotation object. * - * Additional information can be provided by modules: hook_entity_info() can be - * implemented to define new properties, while hook_entity_info_alter() can be - * implemented to alter existing data and fill-in defaults. Module-specific - * properties should be documented in the hook implementations defining them. - * * @Annotation */ class EntityType extends Plugin { diff --git a/core/lib/Drupal/Core/Entity/EntityTypeInterface.php b/core/lib/Drupal/Core/Entity/EntityTypeInterface.php index c163afb..1f9cff3 100644 --- a/core/lib/Drupal/Core/Entity/EntityTypeInterface.php +++ b/core/lib/Drupal/Core/Entity/EntityTypeInterface.php @@ -9,6 +9,11 @@ /** * Provides an interface for an entity type and its metadata. + * + * Additional information can be provided by modules: hook_entity_info() can be + * implemented to define new properties, while hook_entity_info_alter() can be + * implemented to alter existing data and fill-in defaults. Module-specific + * properties should be documented in the hook implementations defining them. */ interface EntityTypeInterface {