| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 12 | final class ResultPrinter |
||
| 13 | { |
||
| 14 | /** @var ResultPrinterInterface */ |
||
| 15 | private $resultPrinter; |
||
| 16 | /** @var OutputOptions */ |
||
| 17 | private $outputOptions; |
||
| 18 | |||
| 19 | public function __construct(ResultPrinterInterface $resultPrinter, OutputOptions $outputOptions) |
||
| 20 | { |
||
| 21 | $this->resultPrinter = $resultPrinter; |
||
| 22 | $this->outputOptions = $outputOptions; |
||
| 23 | } |
||
| 24 | |||
| 25 | public function getOutput(AuditionResult $auditionResult): string |
||
| 28 | } |
||
| 29 | } |
||
| 30 |