/**
  * resets the singleton to its brand-new state (but does NOT delete old references to the old singleton. Meaning,
  * all new usages of the singleton should be made with Classname::instance()) and returns it
  * @return EE_Data_Migration_Manager
  */
 public static function reset()
 {
     self::$_instance = NULL;
     return self::instance();
 }