1 | <?php |
||
9 | class StringFactoryFormatter implements FormatterInterface |
||
10 | { |
||
11 | /** |
||
12 | * @param string $string |
||
13 | * @return FormatterInterface |
||
14 | */ |
||
15 | public static function factory($string) |
||
20 | |||
21 | /** |
||
22 | * @param string $string |
||
23 | * @return FormatterInterface |
||
24 | */ |
||
25 | public static function factoryClassName($string) |
||
35 | |||
36 | /** |
||
37 | * @param mixed $response |
||
38 | * @return string |
||
39 | * @throws FormatterException |
||
40 | */ |
||
41 | public function format($response) |
||
45 | } |
||
46 |