aboutsummaryrefslogtreecommitdiff
path: root/lib/CacheAbstract.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/CacheAbstract.php')
-rw-r--r--lib/CacheAbstract.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/CacheAbstract.php b/lib/CacheAbstract.php
new file mode 100644
index 00000000..98608b25
--- /dev/null
+++ b/lib/CacheAbstract.php
@@ -0,0 +1,11 @@
+<?php
+require_once(__DIR__ . '/CacheInterface.php');
+abstract class CacheAbstract implements CacheInterface{
+ protected $param;
+
+ public function prepare(array $param){
+ $this->param = $param;
+
+ return $this;
+ }
+}