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