aboutsummaryrefslogtreecommitdiff
path: root/lib/Cache.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Cache.php')
-rw-r--r--lib/Cache.php22
1 files changed, 1 insertions, 21 deletions
diff --git a/lib/Cache.php b/lib/Cache.php
index a165148d..572b96dc 100644
--- a/lib/Cache.php
+++ b/lib/Cache.php
@@ -1,25 +1,5 @@
<?php
-/**
-* All cache logic
-* Note : adapter are store in other place
-*/
-
-interface CacheInterface{
- public function loadData();
- public function saveData($datas);
- public function getTime();
-}
-
-abstract class CacheAbstract implements CacheInterface{
- protected $param;
-
- public function prepare(array $param){
- $this->param = $param;
-
- return $this;
- }
-}
-
+require_once(__DIR__ . '/CacheInterface.php');
class Cache{
static protected $dirCache;