forked from blallo/rss-bridge
62eec43980
All files are now using tabs for indentation
7 lines
160 B
PHP
7 lines
160 B
PHP
<?php
|
|
interface BridgeInterface {
|
|
public function collectData();
|
|
public function getCacheDuration();
|
|
public function getName();
|
|
public function getURI();
|
|
}
|