| 1 | <?php declare(strict_types = 1); |
||
| 10 | class ResultsRendererFactory |
||
| 11 | { |
||
| 12 | const FORMAT_JSON = 'json'; |
||
| 13 | const FORMAT_TEXT = 'text'; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Render the results |
||
| 17 | * @param string $format Format to render. |
||
| 18 | * @throws InvalidArgumentException If output format invalid. |
||
| 19 | * @return ResultsRendererInterface |
||
| 20 | */ |
||
| 21 | public function getRenderer(string $format): ResultsRendererInterface |
||
| 33 | } |
||
| 34 |