migration = $migration; $this->destinationIdValues = $destination_id_values; } /** * Gets the migration entity. * * @return \Drupal\migrate\Plugin\MigrationInterface * The migration being rolled back. */ public function getMigration() { return $this->migration; } /** * Gets the destination ID values. * * @return array * The destination ID as an array. */ public function getDestinationIdValues() { return $this->destinationIdValues; } }