From b93b6e2a9d8b42a85379f878b80e754d314c2914 Mon Sep 17 00:00:00 2001 From: Eric Bremner <ebremner@uwaterloo.ca> Date: Thu, 9 Jun 2022 08:17:01 -0400 Subject: [PATCH] ISTWCMS-5605: fixing DI for drush commands --- src/Commands/UwDrushCommands.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Commands/UwDrushCommands.php b/src/Commands/UwDrushCommands.php index 9b03ee32..6c16f7b4 100644 --- a/src/Commands/UwDrushCommands.php +++ b/src/Commands/UwDrushCommands.php @@ -5,7 +5,7 @@ namespace Drupal\uw_cfg_common\Commands; use Drupal\Core\Config\ConfigFactoryInterface; use Drupal\Core\Entity\EntityTypeManagerInterface; use Drupal\Core\Extension\ModuleHandler; -use Drupal\Core\Extension\ModuleInstaller; +use Drupal\Core\ProxyClass\Extension\ModuleInstaller; use Drupal\uw_cfg_common\Service\UWMissingBlocks; use Drupal\uw_cfg_common\UwPermissions\UwPermissions; use Drupal\uw_cfg_common\UwRoles\UwRoles; @@ -50,7 +50,7 @@ class UwDrushCommands extends DrushCommands { /** * Module installer. * - * @var \Drupal\Core\Extension\ModuleInstaller + * @var \Drupal\Core\ProxyClass\Extension\ModuleInstaller */ protected $moduleInstaller; -- GitLab