Skip to content

Commit

Permalink
Issue 4303: Added missing parameter on ConfigImport instance (#4304)
Browse files Browse the repository at this point in the history
  • Loading branch information
sarcisal authored Sep 15, 2021
1 parent aa3d57c commit b957007
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/Command/Config/ImportCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@ private function configImport(StorageComparerInterface $storage_comparer)
\Drupal::moduleHandler(),
\Drupal::service('module_installer'),
\Drupal::service('theme_handler'),
\Drupal::service('string_translation')
\Drupal::service('string_translation'),
\Drupal::service('extension.list.module')
);

if ($config_importer->alreadyImporting()) {
Expand Down
3 changes: 2 additions & 1 deletion src/Command/Config/ImportSingleCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,8 @@ private function configImport(StorageComparer $storageComparer)
\Drupal::moduleHandler(),
\Drupal::service('module_installer'),
\Drupal::service('theme_handler'),
\Drupal::service('string_translation')
\Drupal::service('string_translation'),
\Drupal::service('extension.list.module')
);

if ($configImporter->alreadyImporting()) {
Expand Down

0 comments on commit b957007

Please sign in to comment.