You are here

public function MigrateExecutable::getRollbackCount in Migrate Tools 8.3

Same name and namespace in other branches
  1. 8.5 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getRollbackCount()
  2. 8 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getRollbackCount()
  3. 8.2 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getRollbackCount()
  4. 8.4 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getRollbackCount()

Return the number of items rolled back.

Return value

int

1 call to MigrateExecutable::getRollbackCount()
MigrateExecutable::rollbackMessage in src/MigrateExecutable.php
Emit information on what we've done since the last feedback (or the beginning of this migration).

File

src/MigrateExecutable.php, line 201

Class

MigrateExecutable

Namespace

Drupal\migrate_tools

Code

public function getRollbackCount() {
  return $this->deleteCounter;
}