Exemplo n.º 1
0
 /**
  * Destroy all Zend_Log instances in Zend_Log::$_instances.  This is equivalent to calling unregister()
  * for each log instance.
  *
  * @return boolean True
  */
 public static function close()
 {
     // This will cause the destruction of the instances.  The destructor
     // in the Zend_Log_Adapter_File class will clean up on its way out.
     self::$_instances = null;
     return true;
 }