abstract protected function CacheProvider::doContains in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/doctrine/cache/lib/Doctrine/Common/Cache/CacheProvider.php \Doctrine\Common\Cache\CacheProvider::doContains()
Tests if an entry exists in the cache.
Parameters
string $id The cache id of the entry to check for.:
Return value
boolean TRUE if a cache entry exists for the given cache id, FALSE otherwise.
1 call to CacheProvider::doContains()
- CacheProvider::contains in vendor/
doctrine/ cache/ lib/ Doctrine/ Common/ Cache/ CacheProvider.php - Tests if an entry exists in the cache.
17 methods override CacheProvider::doContains()
- ApcCache::doContains in vendor/
doctrine/ cache/ lib/ Doctrine/ Common/ Cache/ ApcCache.php - Tests if an entry exists in the cache.
- ArrayCache::doContains in vendor/
doctrine/ cache/ lib/ Doctrine/ Common/ Cache/ ArrayCache.php - Tests if an entry exists in the cache.
- ChainCache::doContains in vendor/
doctrine/ cache/ lib/ Doctrine/ Common/ Cache/ ChainCache.php - Tests if an entry exists in the cache.
- CouchbaseCache::doContains in vendor/
doctrine/ cache/ lib/ Doctrine/ Common/ Cache/ CouchbaseCache.php - Tests if an entry exists in the cache.
- FilesystemCache::doContains in vendor/
doctrine/ cache/ lib/ Doctrine/ Common/ Cache/ FilesystemCache.php - Tests if an entry exists in the cache.
File
- vendor/
doctrine/ cache/ lib/ Doctrine/ Common/ Cache/ CacheProvider.php, line 239
Class
- CacheProvider
- Base class for cache provider implementations.
Namespace
Doctrine\Common\CacheCode
protected abstract function doContains($id);