3501573 - Fix missing argument for ConfigImporter
Merged
requested to merge issue/config_import_single-3501573:3501573-class-drupalcoreconfigconfigimporter-constructor into 2.0.x
Compare changes
@@ -14,6 +14,7 @@ use Drupal\Core\Config\TypedConfigManagerInterface;
@@ -99,6 +100,13 @@ class ConfigImportSingleCommands extends DrushCommands {
@@ -129,10 +137,12 @@ class ConfigImportSingleCommands extends DrushCommands {
public function __construct(StorageInterface $storage, EventDispatcherInterface $eventDispatcher, ConfigManagerInterface $configManager, LockBackendInterface $lock, TypedConfigManagerInterface $configTyped, ModuleHandlerInterface $moduleHandler, ModuleInstallerInterface $moduleInstaller, ThemeHandlerInterface $themeHandler, TranslationInterface $stringTranslation, ModuleExtensionList $extensionListModule, ConfigFactoryInterface $configFactory) {
public function __construct(StorageInterface $storage, EventDispatcherInterface $eventDispatcher, ConfigManagerInterface $configManager, LockBackendInterface $lock, TypedConfigManagerInterface $configTyped, ModuleHandlerInterface $moduleHandler, ModuleInstallerInterface $moduleInstaller, ThemeHandlerInterface $themeHandler, TranslationInterface $stringTranslation, ModuleExtensionList $extensionListModule, ThemeExtensionList $extension_list_theme, ConfigFactoryInterface $configFactory) {
@@ -144,6 +154,7 @@ class ConfigImportSingleCommands extends DrushCommands {
@@ -216,7 +227,8 @@ class ConfigImportSingleCommands extends DrushCommands {