protected function ArrayCache::doFlush

Deletes all cache entries.

Return value

boolean TRUE if the cache entry was successfully deleted, FALSE otherwise.

Overrides CacheProvider::doFlush

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Cache/ArrayCache.php, line 82

Class

ArrayCache
Array cache driver.

Namespace

Doctrine\Common\Cache

Code

protected function doFlush() {
  $this->data = array();
  return true;
}