mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-02-17 15:49:57 +03:00
6 lines
123 B
PHP
6 lines
123 B
PHP
<?php
|
|
interface BridgeInterface {
|
|
public function collectData();
|
|
public function getName();
|
|
public function getURI();
|
|
}
|