mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-01-18 06:38:19 +01:00
298dc49c67
The files have grown to a size where it is necessary to search for a class in a file. This commit splits the content into one file per class. RSS-Bridge will require implementations and the implementations will require (once) the interfaces.
7 lines
145 B
PHP
7 lines
145 B
PHP
<?php
|
|
interface FormatInterface{
|
|
public function stringify();
|
|
public function display();
|
|
public function setItems(array $bridges);
|
|
}
|