瀏覽代碼

[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 年之前
父節點
當前提交
28e813620f
共有 1 個文件被更改,包括 6 次插入1 次删除
  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();
 }