示例#1
0
 /**
  * Clears the object cache of all data.
  *
  * @since 1.0.0
  *
  * @return true Always returns true.
  */
 public static function flush()
 {
     self::$cache = array();
     return true;
 }
示例#2
0
/**
 * Clears the object cache of all data.
 *
 * @since 1.0.0
 * @return true Always returns true.
 */
function et_core_cache_flush()
{
    return ET_Core_Cache::flush();
}