PHPdoc cleanup

This commit is contained in:
Frederic Guillot
2016-03-04 21:11:12 -05:00
parent 3808209690
commit a7f3e3bec5
42 changed files with 97 additions and 51 deletions

View File

@@ -10,6 +10,26 @@ namespace Kanboard\Core\Cache;
*/
abstract class Base
{
/**
* Fetch value from cache
*
* @abstract
* @access public
* @param string $key
* @return mixed Null when not found, cached value otherwise
*/
abstract public function get($key);
/**
* Save a new value in the cache
*
* @abstract
* @access public
* @param string $key
* @param mixed $value
*/
abstract public function set($key, $value);
/**
* Proxy cache
*