You are here

public function MigrateRollbackEvent::__construct in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/migrate/src/Event/MigrateRollbackEvent.php \Drupal\migrate\Event\MigrateRollbackEvent::__construct()

Constructs an rollback event object.

Parameters

\Drupal\migrate\Plugin\MigrationInterface $migration: Migration entity.

File

core/modules/migrate/src/Event/MigrateRollbackEvent.php, line 26

Class

MigrateRollbackEvent
Wraps a pre- or post-rollback event for event listeners.

Namespace

Drupal\migrate\Event

Code

public function __construct(MigrationInterface $migration) {
  $this->migration = $migration;
}