diff options
Diffstat (limited to 'app/Core/Cache/Base.php')
-rw-r--r-- | app/Core/Cache/Base.php | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/app/Core/Cache/Base.php b/app/Core/Cache/Base.php index 2879f1f1..d62b8507 100644 --- a/app/Core/Cache/Base.php +++ b/app/Core/Cache/Base.php @@ -11,26 +11,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 * * Note: Arguments must be scalar types |