public static function DevelEntityDefinitionUpdateManager::create in Devel Entity Updates 3.x
Same name and namespace in other branches
- 8.2 src/DevelEntityDefinitionUpdateManager.php \Drupal\devel_entity_updates\DevelEntityDefinitionUpdateManager::create()
- 8 src/DevelEntityDefinitionUpdateManager.php \Drupal\devel_entity_updates\DevelEntityDefinitionUpdateManager::create()
- 3.0.x src/DevelEntityDefinitionUpdateManager.php \Drupal\devel_entity_updates\DevelEntityDefinitionUpdateManager::create()
Instantiates a new instance of this class.
This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton.
Parameters
\Symfony\Component\DependencyInjection\ContainerInterface $container: The service container this instance should use.
Overrides ContainerInjectionInterface::create
File
- src/
DevelEntityDefinitionUpdateManager.php, line 98
Class
- DevelEntityDefinitionUpdateManager
- Development version of the entity definition update manager.
Namespace
Drupal\devel_entity_updatesCode
public static function create(ContainerInterface $container) {
/** @noinspection PhpParamsInspection */
return new static($container
->get('entity.definition_update_manager'), $container
->get('entity.last_installed_schema.repository'), $container
->get('entity_type.manager'), $container
->get('entity_type.listener'), $container
->get('entity_field.manager'), $container
->get('field_storage_definition.listener'));
}