public function CacheProvider::delete

Deletes a cache entry.

Parameters

string $id cache id:

Return value

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

Overrides Cache::delete

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Cache/CacheProvider.php, line 95

Class

CacheProvider
Base class for cache provider implementations.

Namespace

Doctrine\Common\Cache

Code

public function delete($id) {
  return $this
    ->doDelete($this
    ->getNamespacedId($id));
}