aboutsummaryrefslogtreecommitdiff
path: root/lib/CacheInterface.php
diff options
context:
space:
mode:
authorGravatar logmanoriginal <logmanoriginal@users.noreply.github.com> 2016-09-05 18:05:19 +0200
committerGravatar logmanoriginal <logmanoriginal@users.noreply.github.com> 2016-09-05 18:05:19 +0200
commit298dc49c67b9a489190b920b75c95531df5e865a (patch)
treedad2ecd2e236f80d88d4b292e0be0efde827576b /lib/CacheInterface.php
parentd98bb25de681ca9b4bab97152a4cfff7983d5256 (diff)
downloadrss-bridge-298dc49c67b9a489190b920b75c95531df5e865a.tar.gz
rss-bridge-298dc49c67b9a489190b920b75c95531df5e865a.tar.zst
rss-bridge-298dc49c67b9a489190b920b75c95531df5e865a.zip
[lib] Split Bridge/Cache/Format into one file per class
The files have grown to a size where it is necessary to search for a class in a file. This commit splits the content into one file per class. RSS-Bridge will require implementations and the implementations will require (once) the interfaces.
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();
+}