protected function ArrayCache::doDelete

Deletes a cache entry.

Parameters

string $id cache id:

Return value

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

Overrides CacheProvider::doDelete

File

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

Class

ArrayCache
Array cache driver.

Namespace

Doctrine\Common\Cache

Code

protected function doDelete($id) {
  unset($this->data[$id]);
  return true;
}