You are here

public function MigrateDestination::resetStats in Migrate 6.2

Same name and namespace in other branches
  1. 7.2 includes/destination.inc \MigrateDestination::resetStats()

Reset numCreated and numUpdated back to 0.

File

includes/destination.inc, line 90
Defines base for migration destinations.

Class

MigrateDestination
Abstract base class for destination handling.

Code

public function resetStats() {
  $this->numCreated = 0;
  $this->numUpdated = 0;
}