numCreated; } protected $numUpdated = 0; public function getUpdated() { return $this->numUpdated; } /** * Reset numCreated and numUpdated back to 0. */ public function resetStats() { $this->numCreated = 0; $this->numUpdated = 0; } /** * Null constructor */ public function __construct() { } } /** * All destination handlers should be derived from MigrateDestinationHandler */ abstract class MigrateDestinationHandler extends MigrateHandler { // abstract function arguments(...) /** * Any one or more of these methods may be implemented */ //abstract public function fields(); //abstract public function prepare($entity, stdClass $row); //abstract public function complete($entity, stdClass $row); }