mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-23 10:05:32 +03:00
62eec43980
All files are now using tabs for indentation
6 lines
136 B
PHP
6 lines
136 B
PHP
<?php
|
|
interface FormatInterface{
|
|
public function stringify();
|
|
public function display();
|
|
public function setItems(array $bridges);
|
|
}
|