mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-02-19 23:55:44 +01:00
7 lines
123 B
PHP
7 lines
123 B
PHP
<?php
|
|
interface BridgeInterface {
|
|
public function collectData();
|
|
public function getName();
|
|
public function getURI();
|
|
}
|