You are here

class MigrateDevelCommands in Migrate Devel 8.2

Extends migrate commands with debugging options.

Hierarchy

Expanded class hierarchy of MigrateDevelCommands

1 string reference to 'MigrateDevelCommands'
drush.services.yml in ./drush.services.yml
drush.services.yml
1 service uses MigrateDevelCommands
migrate_devel.commands in ./drush.services.yml
\Drupal\migrate_devel\Commands\MigrateDevelCommands

File

src/Commands/MigrateDevelCommands.php, line 11

Namespace

Drupal\migrate_devel\Commands
View source
class MigrateDevelCommands extends DrushCommands {

  /**
   * Register two new options for the migrate:import command.
   *
   * @hook command migrate:import
   * @option migrate-debug Enable Debug Mode
   * @option migrate-debug-pre Enable Debug Mode (Before Row Save)
   */
  public function additionalOptionsMigrateImport(CommandData $commandData) {

    // No action required here. The new options will be examined in the
    // migrate event subscriber methods.
  }

}

Members

Namesort descending Modifiers Type Description Overrides
MigrateDevelCommands::additionalOptionsMigrateImport public function Register two new options for the migrate:import command.