public function MigrateExecutable::getRollbackCount in Migrate Tools 8.5
Same name and namespace in other branches
- 8 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getRollbackCount()
- 8.2 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getRollbackCount()
- 8.3 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getRollbackCount()
- 8.4 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getRollbackCount()
Return the number of items rolled back.
Return value
int The rollback count.
1 call to MigrateExecutable::getRollbackCount()
- MigrateExecutable::rollbackMessage in src/
MigrateExecutable.php - Emit information on what we've done.
File
- src/
MigrateExecutable.php, line 218
Class
- MigrateExecutable
- Defines a migrate executable class for drush.
Namespace
Drupal\migrate_toolsCode
public function getRollbackCount() {
return $this->deleteCounter;
}