mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-01-17 22:28:22 +01:00
62eec43980
All files are now using tabs for indentation
8 lines
160 B
PHP
8 lines
160 B
PHP
<?php
|
|
interface BridgeInterface {
|
|
public function collectData();
|
|
public function getCacheDuration();
|
|
public function getName();
|
|
public function getURI();
|
|
}
|