Skip to content

Commit

Permalink
Merge pull request #38 from jordandukart/master
Browse files Browse the repository at this point in the history
D9 compatability.
  • Loading branch information
nchiasson-dgi authored Oct 13, 2021
2 parents 8706c1a + 521ad73 commit 5ea7aa2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"require": {
"iqb/substream": "dev-master",
"drupal/migrate_directory": "^1",
"drupal/migrate_plus": "^4.2",
"drupal/migrate_plus": "^5.1",
"drupal/migrate_tools": "^5.0",
"symfony/mime": "^5"
}
}
5 changes: 3 additions & 2 deletions src/Commands/MigrateCommands.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
use Drupal\migrate_tools\Commands\MigrateToolsCommands;
use Drupal\dgi_migrate\MigrateBatchExecutable;
use Drupal\migrate\Plugin\MigrationInterface;
use Drupal\migrate_tools\MigrateTools;

/**
* Migration command.
Expand Down Expand Up @@ -75,7 +76,7 @@ public function batchImport($migration_names = '', array $options = [
'limit' => self::REQ,
'feedback' => self::REQ,
'idlist' => self::REQ,
'idlist-delimiter' => self::DEFAULT_ID_LIST_DELIMITER,
'idlist-delimiter' => MigrateTools::DEFAULT_ID_LIST_DELIMITER,
'update' => FALSE,
'force' => FALSE,
'continue-on-failure' => FALSE,
Expand Down Expand Up @@ -227,7 +228,7 @@ public function rollback($migration_names = '', array $options = [
'tag' => self::REQ,
'feedback' => self::REQ,
'idlist' => self::REQ,
'idlist-delimiter' => self::DEFAULT_ID_LIST_DELIMITER,
'idlist-delimiter' => MigrateTools::DEFAULT_ID_LIST_DELIMITER,
'skip-progress-bar' => FALSE,
'continue-on-failure' => FALSE,
'statuses' => self::REQ,
Expand Down

0 comments on commit 5ea7aa2

Please sign in to comment.