Пример #1
0
 public static function clear()
 {
     self::$_profiles = null;
     self::$_objectPool = array();
 }
Пример #2
0
 /**
  * clear the loaded profiles to force to reload the profiles file.
  * WARNING: it destroy all objects stored in the pool!
  */
 public static function clear()
 {
     self::$_profiles = null;
     self::$_objectPool = array();
     if (gc_enabled()) {
         gc_collect_cycles();
     }
 }