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