Verified Commit 41052d27 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3302096 by Spokje: Incorrect deprecation removal in...

Issue #3302096 by Spokje: Incorrect deprecation removal in \Drupal\migrate_drupal_ui\Form\ReviewForm::__construct

(cherry picked from commit f2c65927)
parent 4d2cc81d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -77,7 +77,7 @@ class ReviewForm extends MigrateUpgradeFormBase {
   * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
   *   The module handler service.
   */
  public function __construct(StateInterface $state, MigrationPluginManagerInterface $migration_plugin_manager, PrivateTempStoreFactory $tempstore_private, MigrationState $migrationState, ConfigFactoryInterface $config_factory, ModuleHandlerInterface $module_handler = NULL) {
  public function __construct(StateInterface $state, MigrationPluginManagerInterface $migration_plugin_manager, PrivateTempStoreFactory $tempstore_private, MigrationState $migrationState, ConfigFactoryInterface $config_factory, ModuleHandlerInterface $module_handler) {
    parent::__construct($config_factory, $migration_plugin_manager, $state, $tempstore_private);
    $this->migrationState = $migrationState;
    $this->moduleHandler = $module_handler;