Skip to content

Commit

Permalink
Updating function signatures to correct fatal errors
Browse files Browse the repository at this point in the history
  • Loading branch information
nchiasson-dgi committed Mar 20, 2023
1 parent c72e6c1 commit 8b733a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Commands/MigrateCommands.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public function batchImport($migration_names = '', array $options = [
/**
* {@inheritdoc}
*/
protected function executeMigration(MigrationInterface $migration, $migration_id, array $options = []) {
protected function executeMigration(MigrationInterface $migration, $migration_id, array $options = []): void {
// Keep track of all migrations run during this command so the same
// migration is not run multiple times.
static $executed_migrations = [];
Expand Down Expand Up @@ -232,7 +232,7 @@ public function rollback($migration_names = '', array $options = [
'skip-progress-bar' => FALSE,
'continue-on-failure' => FALSE,
'statuses' => self::REQ,
]) {
]): void {
$group_names = $options['group'];
$tag_names = $options['tag'];
$all = $options['all'];
Expand Down

0 comments on commit 8b733a7

Please sign in to comment.