[FormatInterface] Add missing public functions
This commit adds all missing functions to the interface that are defined and implemented as public functions in FormatAbstract.
This commit is contained in:
parent
fdf98041e3
commit
28e813620f
1 changed files with 6 additions and 1 deletions
|
@ -1,6 +1,11 @@
|
||||||
<?php
|
<?php
|
||||||
interface FormatInterface{
|
interface FormatInterface {
|
||||||
public function stringify();
|
public function stringify();
|
||||||
public function display();
|
public function display();
|
||||||
public function setItems(array $bridges);
|
public function setItems(array $bridges);
|
||||||
|
public function getItems();
|
||||||
|
public function setExtraInfos(array $infos);
|
||||||
|
public function getExtraInfos();
|
||||||
|
public function setCharset($charset);
|
||||||
|
public function getCharset();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue