/** * Clear the instance pool. * * @return void */ public static function clearInstancePool($and_clear_all_references = false) { if ($and_clear_all_references) { foreach (ConsultaPeer::$instances as $instance) { $instance->clearAllReferences(true); } } ConsultaPeer::$instances = array(); }