public function clear() { if (!$this->hasNamespace()) { $this->doctrineCache->flushAll(); } else { $this->withNamespace()->deleteAll(); } }
/** * Flush all cache entries * * @access public * @return void */ public function flush() { if ($this->flush_namespace) { $this->adapted_provider->deleteAll(); } else { $this->adapted_provider->flushAll(); } }
/** * Flushes cached "configurable" flags for all configs. * * @return bool TRUE if the cache entries were successfully flushed; otherwise, FALSE. */ public function flushAllConfigurable() { $this->localModelCache = []; return $this->modelCache->flushAll(); }
public function flush() { $this->storage = array(); return $this->engine->flushAll(); }
/** * {@inheritdoc} */ public function flushAll() { return $this->provider->flushAll(); }
/** * Clears all stored items in Cache. * * @return boolean true on success. */ public function flushCache() { return $this->cache->flushAll(); }
/** * */ public function deleteAll() { $this->setList([]); $this->cache->flushAll(); }
/** * Clear the cache. */ protected function clearCache() { self::$cache->flushAll(); }
/** * {@inheritdoc} */ public function clear() { return $this->cache->flushAll(); }
/** * Clear the cache. */ public function clearCache() { self::$cache->flushAll(); }
/** * */ public function flushAll() { $this->cache->flushAll(); }