diff options
author | 2016-09-05 18:05:19 +0200 | |
---|---|---|
committer | 2016-09-05 18:05:19 +0200 | |
commit | 298dc49c67b9a489190b920b75c95531df5e865a (patch) | |
tree | dad2ecd2e236f80d88d4b292e0be0efde827576b /lib/BridgeInterface.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/BridgeInterface.php')
-rw-r--r-- | lib/BridgeInterface.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/BridgeInterface.php b/lib/BridgeInterface.php new file mode 100644 index 00000000..5054d102 --- /dev/null +++ b/lib/BridgeInterface.php @@ -0,0 +1,7 @@ +<?php +interface BridgeInterface { + public function collectData(); + public function getCacheDuration(); + public function getName(); + public function getURI(); +} |