mirror of
https://github.com/friendica/friendica
synced 2025-04-27 01:10:14 +00:00
code standards / simplifications
This commit is contained in:
parent
19209f6826
commit
906bb25972
18 changed files with 70 additions and 121 deletions
|
@ -12,7 +12,7 @@ use Friendica\Core\Cache;
|
|||
interface ICacheDriver
|
||||
{
|
||||
/**
|
||||
* @brief Fetches cached data according to the key
|
||||
* Fetches cached data according to the key
|
||||
*
|
||||
* @param string $key The key to the cached data
|
||||
*
|
||||
|
@ -21,18 +21,18 @@ interface ICacheDriver
|
|||
public function get($key);
|
||||
|
||||
/**
|
||||
* @brief Stores data in the cache identified by the key. The input $value can have multiple formats.
|
||||
* Stores data in the cache identified by the key. The input $value can have multiple formats.
|
||||
*
|
||||
* @param string $key The cache key
|
||||
* @param mixed $value The value to store
|
||||
* @param integer $ttl The cache lifespan, must be one of the Cache constants
|
||||
* @param integer $ttl The cache lifespan, must be one of the Cache constants
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function set($key, $value, $ttl = Cache::FIVE_MINUTES);
|
||||
|
||||
/**
|
||||
* @brief Delete a key from the cache
|
||||
* Delete a key from the cache
|
||||
*
|
||||
* @param string $key The cache key
|
||||
*
|
||||
|
@ -41,7 +41,7 @@ interface ICacheDriver
|
|||
public function delete($key);
|
||||
|
||||
/**
|
||||
* @brief Remove outdated data from the cache
|
||||
* Remove outdated data from the cache
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue