Interface for a cache backend.
@author Kris Wallsmith <kris.wallsmith@gmail.com>
Expanded class hierarchy of CacheInterface
All classes that implement CacheInterface
interface CacheInterface {
/**
* Checks if the cache has a value for a key.
*
* @param string $key A unique key
*
* @return Boolean Whether the cache has a value for this key
*/
public function has($key);
/**
* Returns the value for a key.
*
* @param string $key A unique key
*
* @return string|null The value in the cache
*/
public function get($key);
/**
* Sets a value in the cache.
*
* @param string $key A unique key
* @param string $value The value to cache
*/
public function set($key, $value);
/**
* Removes a value from the cache.
*
* @param string $key A unique key
*/
public function remove($key);
}
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CacheInterface:: |
public | function | Returns the value for a key. | 4 |
CacheInterface:: |
public | function | Checks if the cache has a value for a key. | 5 |
CacheInterface:: |
public | function | Removes a value from the cache. | 4 |
CacheInterface:: |
public | function | Sets a value in the cache. | 4 |