Fix compatibility issue with PHP 5.3

This commit is contained in:
Frederic Guillot 2016-03-26 20:36:55 -04:00
parent d9dd354726
commit 88d9561966
1 changed files with 0 additions and 20 deletions

View File

@ -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
*