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