| 1 | <?php |
||
| 8 | class Formatter implements FormatterInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var FormatterFactoryInterface |
||
| 12 | */ |
||
| 13 | private $formatterFactory; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param FormatterFactoryInterface $formatterFactory |
||
| 17 | */ |
||
| 18 | public function setFormatterFactory($formatterFactory) |
||
| 22 | |||
| 23 | /** |
||
| 24 | * {@inheritdoc} |
||
| 25 | */ |
||
| 26 | public function format($response) |
||
| 30 | } |
||
| 31 |