aboutsummaryrefslogtreecommitdiff
path: root/lib/CacheInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/CacheInterface.php')
-rw-r--r--lib/CacheInterface.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/CacheInterface.php b/lib/CacheInterface.php
new file mode 100644
index 00000000..89d78ecc
--- /dev/null
+++ b/lib/CacheInterface.php
@@ -0,0 +1,6 @@
+<?php
+interface CacheInterface{
+ public function loadData();
+ public function saveData($datas);
+ public function getTime();
+}