Skip to content
Snippets Groups Projects
Commit d218ced8 authored by Igor Biki's avatar Igor Biki
Browse files

Merge branch 'feature/ISTWCMS-5809-ebremner-update-hook-event-dispatcher' into '1.0.x'

ISTWCMS-5809: using the interface for module handler so that things work correctly

See merge request !268
parents a133a7b8 5af48667
No related branches found
No related tags found
1 merge request!268ISTWCMS-5809: using the interface for module handler so that things work correctly
...@@ -4,7 +4,7 @@ namespace Drupal\uw_cfg_common\Commands; ...@@ -4,7 +4,7 @@ namespace Drupal\uw_cfg_common\Commands;
use Drupal\Core\Config\ConfigFactoryInterface; use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface; use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Extension\ModuleHandler; use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\ProxyClass\Extension\ModuleInstaller; use Drupal\Core\ProxyClass\Extension\ModuleInstaller;
use Drupal\uw_cfg_common\Service\UWMissingBlocks; use Drupal\uw_cfg_common\Service\UWMissingBlocks;
use Drupal\uw_cfg_common\UwPermissions\UwPermissions; use Drupal\uw_cfg_common\UwPermissions\UwPermissions;
...@@ -43,7 +43,7 @@ class UwDrushCommands extends DrushCommands { ...@@ -43,7 +43,7 @@ class UwDrushCommands extends DrushCommands {
/** /**
* Module handler. * Module handler.
* *
* @var \Drupal\Core\Extension\ModuleHandler * @var \Drupal\Core\Extension\ModuleHandlerInterface
*/ */
protected $moduleHandler; protected $moduleHandler;
...@@ -61,7 +61,7 @@ class UwDrushCommands extends DrushCommands { ...@@ -61,7 +61,7 @@ class UwDrushCommands extends DrushCommands {
EntityTypeManagerInterface $entityTypeManager, EntityTypeManagerInterface $entityTypeManager,
UWMissingBlocks $missingBlocks, UWMissingBlocks $missingBlocks,
ConfigFactoryInterface $configFactory, ConfigFactoryInterface $configFactory,
ModuleHandler $moduleHandler, ModuleHandlerInterface $moduleHandler,
ModuleInstaller $moduleInstaller ModuleInstaller $moduleInstaller
) { ) {
$this->entityTypeManager = $entityTypeManager; $this->entityTypeManager = $entityTypeManager;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment