Fix compatibility issue with PHP 5.3
This commit is contained in:
parent
d9dd354726
commit
88d9561966
|
|
@ -10,26 +10,6 @@ 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
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in New Issue