diff options
author | 2016-09-05 18:05:19 +0200 | |
---|---|---|
committer | 2016-09-05 18:05:19 +0200 | |
commit | 298dc49c67b9a489190b920b75c95531df5e865a (patch) | |
tree | dad2ecd2e236f80d88d4b292e0be0efde827576b /lib/CacheInterface.php | |
parent | d98bb25de681ca9b4bab97152a4cfff7983d5256 (diff) | |
download | rss-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.php | 6 |
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(); +} |