From 2681e4b10a2a25b6d62f69f445e3da301f146d3e Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Sat, 18 Oct 2014 15:00:20 +0100 Subject: [PATCH] Issue #2332935 followup by plach: Allow code to respond to entity/field schema changes. --- core/lib/Drupal/Core/Entity/EntityTypeListenerInterface.php | 2 -- .../Core/Field/FieldStorageDefinitionListenerInterface.php | 2 -- 2 files changed, 4 deletions(-) diff --git a/core/lib/Drupal/Core/Entity/EntityTypeListenerInterface.php b/core/lib/Drupal/Core/Entity/EntityTypeListenerInterface.php index c42667ca0586..0a2b9f3c7c2f 100644 --- a/core/lib/Drupal/Core/Entity/EntityTypeListenerInterface.php +++ b/core/lib/Drupal/Core/Entity/EntityTypeListenerInterface.php @@ -9,8 +9,6 @@ namespace Drupal\Core\Entity; /** * Defines an interface for reacting to entity type creation, deletion, and updates. - * - * @todo Convert to Symfony events: https://www.drupal.org/node/2332935 */ interface EntityTypeListenerInterface { diff --git a/core/lib/Drupal/Core/Field/FieldStorageDefinitionListenerInterface.php b/core/lib/Drupal/Core/Field/FieldStorageDefinitionListenerInterface.php index fcea2e4cb0ed..dcc3b2133f9a 100644 --- a/core/lib/Drupal/Core/Field/FieldStorageDefinitionListenerInterface.php +++ b/core/lib/Drupal/Core/Field/FieldStorageDefinitionListenerInterface.php @@ -9,8 +9,6 @@ namespace Drupal\Core\Field; /** * Defines an interface for reacting to field storage definition creation, deletion, and updates. - * - * @todo Convert to Symfony events: https://www.drupal.org/node/2332935 */ interface FieldStorageDefinitionListenerInterface {