You are here

public function MigrateDestination::resetStats in Migrate 7.2

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

Reset numCreated and numUpdated back to 0.

File

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

Class

MigrateDestination
Abstract base class for destination handling.

Code

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