Fix compatibility issue with PHP 5.3
This commit is contained in:
@@ -10,26 +10,6 @@ namespace Kanboard\Core\Cache;
|
|||||||
*/
|
*/
|
||||||
abstract class Base
|
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
|
* Proxy cache
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user