| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | final class OutputWriter implements WriteInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var OutputInterface |
||
| 12 | */ |
||
| 13 | private $output; |
||
| 14 | |||
| 15 | 11 | public function __construct(OutputInterface $output) |
|
| 16 | { |
||
| 17 | 11 | $this->output = $output; |
|
| 18 | 11 | } |
|
| 19 | |||
| 20 | 11 | public function write(string $content, string $fileName): void |
|
| 30 | 11 | } |
|
| 31 | } |
||
| 32 |