mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
7 lines
123 B
PHP
7 lines
123 B
PHP
<?php
|
|
interface BridgeInterface {
|
|
public function collectData();
|
|
public function getName();
|
|
public function getURI();
|
|
}
|