Skip to content
Snippets Groups Projects
Unverified Commit b332b279 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2873858 by karma0321, dhruveshdtripathi, schiavone, vakulrai,...

Issue #2873858 by karma0321, dhruveshdtripathi, schiavone, vakulrai, sorabh.v6, Dinesh18, alexpott, larowlan, Mile23, chrischaplow, Gábor Hojtsy, jpmelguizo, Max1muss: Add Change record to @deprecated for EntityManagerInterface
parent ce01e649
No related branches found
No related tags found
No related merge requests found
......@@ -9,20 +9,26 @@
* Provides an interface for entity type managers.
*
* @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0.
*
* @see https://www.drupal.org/node/2549139
*/
interface EntityManagerInterface extends EntityTypeListenerInterface, EntityBundleListenerInterface, FieldStorageDefinitionListenerInterface, FieldDefinitionListenerInterface, EntityTypeManagerInterface, EntityTypeRepositoryInterface, EntityTypeBundleInfoInterface, EntityDisplayRepositoryInterface, EntityFieldManagerInterface, EntityRepositoryInterface {
/**
* @see \Drupal\Core\Entity\EntityLastInstalledSchemaRepositoryInterface::getLastInstalledDefinition()
* @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. Use
* \Drupal\Core\Entity\EntityLastInstalledSchemaRepositoryInterface::getLastInstalledDefinition()
* instead.
*
* @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0.
* @see https://www.drupal.org/node/2549139
*/
public function getLastInstalledDefinition($entity_type_id);
/**
* @see \Drupal\Core\Entity\EntityLastInstalledSchemaRepositoryInterface::getLastInstalledFieldStorageDefinitions()
* @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. Use
* \Drupal\Core\Entity\EntityLastInstalledSchemaRepositoryInterface::getLastInstalledFieldStorageDefinitions()
* instead.
*
* @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0.
* @see https://www.drupal.org/node/2549139
*/
public function getLastInstalledFieldStorageDefinitions($entity_type_id);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment