This commit is contained in:
2020-12-14 15:34:59 +08:00
parent 7c40a35679
commit b278c028c3
7 changed files with 39 additions and 19 deletions
+7 -3
View File
@@ -21,9 +21,13 @@ interface IFormatter
* @param $context
* @return static
*/
public function send($context);
public function send($context): static;
public function getData();
public function clear();
/**
* @return mixed
*/
public function getData(): mixed;
public function clear(): void;
}