comparison core/lib/Drupal/Core/Config/ConfigManagerInterface.php @ 5:12f9dff5fda9 tip

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:34:47 +0100
parents c75dbcec494b
children
comparison
equal deleted inserted replaced
4:a9cd425dd02b 5:12f9dff5fda9
32 /** 32 /**
33 * Gets the entity manager. 33 * Gets the entity manager.
34 * 34 *
35 * @return \Drupal\Core\Entity\EntityManagerInterface 35 * @return \Drupal\Core\Entity\EntityManagerInterface
36 * The entity manager. 36 * The entity manager.
37 *
38 * @deprecated in Drupal 8.7.x, will be removed before Drupal 9.0.0. Use
39 * \Drupal\Core\Config\ConfigManagerInterface::getEntityTypeManager()
40 * instead.
37 */ 41 */
38 public function getEntityManager(); 42 public function getEntityManager();
43
44 /**
45 * Gets the entity type manager.
46 *
47 * @return \Drupal\Core\Entity\EntityTypeManagerInterface
48 * The entity type manager.
49 */
50 public function getEntityTypeManager();
39 51
40 /** 52 /**
41 * Gets the config factory. 53 * Gets the config factory.
42 * 54 *
43 * @return \Drupal\Core\Config\ConfigFactoryInterface 55 * @return \Drupal\Core\Config\ConfigFactoryInterface
44 * The entity manager. 56 * The config factory.
45 */ 57 */
46 public function getConfigFactory(); 58 public function getConfigFactory();
47 59
48 /** 60 /**
49 * Creates a Diff object using the config data from the two storages. 61 * Creates a Diff object using the config data from the two storages.