Browse Source

[FormatInterface] Add missing public functions

This commit adds all missing functions to the interface
that are defined and implemented as public functions in
FormatAbstract.
logmanoriginal 7 years ago
parent
commit
28e813620f
1 changed files with 6 additions and 1 deletions
  1. 6 1
      lib/FormatInterface.php

+ 6 - 1
lib/FormatInterface.php

@@ -1,6 +1,11 @@
 <?php
-interface FormatInterface{
+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();
 }