You are here

public function MigrateUpgradeCommandsTest::majorDrupalVersionsDataProvider in Migrate Upgrade 8.3

The major Drupal versions to test an upgrade.

Return value

array The major version.

File

tests/src/Functional/MigrateUpgradeCommandsTest.php, line 83

Class

MigrateUpgradeCommandsTest
Execute drush on fully functional website.

Namespace

Drupal\Tests\migrate_upgrade\Functional

Code

public function majorDrupalVersionsDataProvider() : array {
  $version = [];
  $version['drupal 6'] = [
    6,
  ];
  $version['drupal 7'] = [
    7,
  ];
  return $version;
}