Issue #3230554 by TR, longwave: path_alias.manager service no longer used by Umami demo content installer

merge-requests/1171/head
catch 2021-09-07 15:42:39 +01:00
parent f56b80c974
commit f563f96123
1 changed files with 1 additions and 13 deletions

View File

@ -8,7 +8,6 @@ use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Extension\ModuleHandlerInterface; use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\File\Exception\FileException; use Drupal\Core\File\Exception\FileException;
use Drupal\Core\File\FileSystemInterface; use Drupal\Core\File\FileSystemInterface;
use Drupal\path_alias\AliasManagerInterface;
use Drupal\Core\State\StateInterface; use Drupal\Core\State\StateInterface;
use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\DependencyInjection\ContainerInterface;
@ -20,13 +19,6 @@ use Symfony\Component\DependencyInjection\ContainerInterface;
*/ */
class InstallHelper implements ContainerInjectionInterface { class InstallHelper implements ContainerInjectionInterface {
/**
* The path alias manager.
*
* @var \Drupal\path_alias\AliasManagerInterface
*/
protected $aliasManager;
/** /**
* Entity type manager. * Entity type manager.
* *
@ -99,8 +91,6 @@ class InstallHelper implements ContainerInjectionInterface {
/** /**
* Constructs a new InstallHelper object. * Constructs a new InstallHelper object.
* *
* @param \Drupal\path_alias\AliasManagerInterface $aliasManager
* The path alias manager.
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager
* Entity type manager. * Entity type manager.
* @param \Drupal\Core\Extension\ModuleHandlerInterface $moduleHandler * @param \Drupal\Core\Extension\ModuleHandlerInterface $moduleHandler
@ -110,8 +100,7 @@ class InstallHelper implements ContainerInjectionInterface {
* @param \Drupal\Core\File\FileSystemInterface $fileSystem * @param \Drupal\Core\File\FileSystemInterface $fileSystem
* The file system. * The file system.
*/ */
public function __construct(AliasManagerInterface $aliasManager, EntityTypeManagerInterface $entityTypeManager, ModuleHandlerInterface $moduleHandler, StateInterface $state, FileSystemInterface $fileSystem) { public function __construct(EntityTypeManagerInterface $entityTypeManager, ModuleHandlerInterface $moduleHandler, StateInterface $state, FileSystemInterface $fileSystem) {
$this->aliasManager = $aliasManager;
$this->entityTypeManager = $entityTypeManager; $this->entityTypeManager = $entityTypeManager;
$this->moduleHandler = $moduleHandler; $this->moduleHandler = $moduleHandler;
$this->state = $state; $this->state = $state;
@ -127,7 +116,6 @@ class InstallHelper implements ContainerInjectionInterface {
*/ */
public static function create(ContainerInterface $container) { public static function create(ContainerInterface $container) {
return new static( return new static(
$container->get('path_alias.manager'),
$container->get('entity_type.manager'), $container->get('entity_type.manager'),
$container->get('module_handler'), $container->get('module_handler'),
$container->get('state'), $container->get('state'),