mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-02-23 11:25:08 +01:00
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.
8 lines
172 B
PHP
8 lines
172 B
PHP
<?php
|
|
interface BridgeInterface {
|
|
public function collectData();
|
|
public function getCacheDuration();
|
|
public function getName();
|
|
public function getURI();
|
|
}
|