diff -u b/core/lib/Drupal/Core/Entity/ContentEntityDatabaseStorage.php b/core/lib/Drupal/Core/Entity/ContentEntityDatabaseStorage.php --- b/core/lib/Drupal/Core/Entity/ContentEntityDatabaseStorage.php +++ b/core/lib/Drupal/Core/Entity/ContentEntityDatabaseStorage.php @@ -104,7 +104,7 @@ /** * The entity schema handler. * - * @var \Drupal\Core\Entity\EntityTypeListenerInterface + * @var \Drupal\Core\Entity\Schema\EntitySchemaHandlerInterface */ protected $schemaHandler; diff -u b/core/lib/Drupal/Core/Entity/EntityTypeListenerInterface.php b/core/lib/Drupal/Core/Entity/EntityTypeListenerInterface.php --- b/core/lib/Drupal/Core/Entity/EntityTypeListenerInterface.php +++ b/core/lib/Drupal/Core/Entity/EntityTypeListenerInterface.php @@ -9,6 +9,8 @@ /** * 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 -u /dev/null b/core/lib/Drupal/Core/Entity/Schema/EntitySchemaHandlerInterface.php --- /dev/null +++ b/core/lib/Drupal/Core/Entity/Schema/EntitySchemaHandlerInterface.php @@ -0,0 +1,15 @@ +