summaryrefslogtreecommitdiff
path: root/app/Core/Cache
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-03-26 20:36:55 -0400
committerFrederic Guillot <fred@kanboard.net>2016-03-26 20:36:55 -0400
commit88d956196622c70a9a16bab0cb01e50c9788436c (patch)
treee9952a90e561bc32db356f786d1711523cfe88a5 /app/Core/Cache
parentd9dd35472667b09f16d34baec31790c5524d5956 (diff)
Fix compatibility issue with PHP 5.3
Diffstat (limited to 'app/Core/Cache')
-rw-r--r--app/Core/Cache/Base.php20
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