UpdateRegistryFactory.php in Drupal 10
File
core/lib/Drupal/Core/Update/UpdateRegistryFactory.php
View source
<?php
namespace Drupal\Core\Update;
use Symfony\Component\DependencyInjection\ContainerAwareInterface;
use Symfony\Component\DependencyInjection\ContainerAwareTrait;
class UpdateRegistryFactory implements ContainerAwareInterface {
use ContainerAwareTrait;
public function create() {
$extensions = array_merge(array_keys($this->container
->get('module_handler')
->getModuleList()), array_keys($this->container
->get('theme_handler')
->listInfo()));
return new UpdateRegistry($this->container
->getParameter('app.root'), $this->container
->getParameter('site.path'), $extensions, $this->container
->get('keyvalue')
->get('post_update'));
}
}