Same name and namespace in other branches
  1. 8.9.x core/modules/migrate/src/Plugin/PluginEventSubscriber.php \Drupal\migrate\Plugin\PluginEventSubscriber::postRollback()
  2. 9 core/modules/migrate/src/Plugin/PluginEventSubscriber.php \Drupal\migrate\Plugin\PluginEventSubscriber::postRollback()

Forwards post-rollback events to the source and destination plugins.

Parameters

\Drupal\migrate\Event\MigrateRollbackEvent $event: The rollback event.

File

core/modules/migrate/src/Plugin/PluginEventSubscriber.php, line 77

Class

PluginEventSubscriber
Event subscriber to forward Migrate events to source and destination plugins.

Namespace

Drupal\migrate\Plugin

Code

public function postRollback(MigrateRollbackEvent $event) {
  $this
    ->invoke('postRollback', $event, RollbackAwareInterface::class);
}