public function UpdateRegistryFactory::create in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Update/UpdateRegistryFactory.php \Drupal\Core\Update\UpdateRegistryFactory::create()
Creates a new UpdateRegistry instance.
Return value
\Drupal\Core\Update\UpdateRegistry The update registry instance.
File
- core/
lib/ Drupal/ Core/ Update/ UpdateRegistryFactory.php, line 21
Class
- UpdateRegistryFactory
- Service factory for the update registry.
Namespace
Drupal\Core\UpdateCode
public function create() {
return new UpdateRegistry($this->container
->getParameter('app.root'), $this->container
->getParameter('site.path'), array_keys($this->container
->get('module_handler')
->getModuleList()), $this->container
->get('keyvalue')
->get('post_update'));
}