diff --git a/core/modules/migrate_drupal_ui/src/Form/MigrateUpgradeForm.php b/core/modules/migrate_drupal_ui/src/Form/MigrateUpgradeForm.php index bb009a2..d9e58bc 100644 --- a/core/modules/migrate_drupal_ui/src/Form/MigrateUpgradeForm.php +++ b/core/modules/migrate_drupal_ui/src/Form/MigrateUpgradeForm.php @@ -93,7 +93,6 @@ class MigrateUpgradeForm extends ConfirmFormBase { * @param \Drupal\migrate\Audit\AuditorInterface $auditor * The auditor service. */ - public function __construct(StateInterface $state, DateFormatterInterface $date_formatter, RendererInterface $renderer, MigrationPluginManagerInterface $plugin_manager, MigrateFieldPluginManagerInterface $field_plugin_manager, ModuleHandlerInterface $module_handler) { public function __construct(StateInterface $state, DateFormatterInterface $date_formatter, RendererInterface $renderer, MigrationPluginManagerInterface $plugin_manager, MigrateFieldPluginManagerInterface $field_plugin_manager, ModuleHandlerInterface $module_handler, AuditorInterface $auditor) { $this->state = $state; $this->dateFormatter = $date_formatter; @@ -115,7 +114,6 @@ public static function create(ContainerInterface $container) { $container->get('plugin.manager.migration'), $container->get('plugin.manager.migrate.field'), $container->get('module_handler'), - $container->get('plugin.manager.migration'), $container->get('migrate.audit') ); }