1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-01-17 22:28:22 +01:00
php-rss-bridge/lib/FormatInterface.php
logmanoriginal 28e813620f [FormatInterface] Add missing public functions
This commit adds all missing functions to the interface
that are defined and implemented as public functions in
FormatAbstract.
2016-11-09 18:41:24 +01:00

12 lines
316 B
PHP

<?php
interface FormatInterface {
public function stringify();
public function display();
public function setItems(array $bridges);
public function getItems();
public function setExtraInfos(array $infos);
public function getExtraInfos();
public function setCharset($charset);
public function getCharset();
}