Total Complexity | 4 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 1 |
1 | <?php declare(strict_types=1); |
||
15 | class SymfonyOutputAdapter implements OutputInterface |
||
16 | { |
||
17 | /** @var StreamOutput */ |
||
18 | protected $output; |
||
19 | |||
20 | public function __construct(ConsoleOutput $output) |
||
31 | ); |
||
32 | // @codeCoverageIgnoreEnd |
||
33 | } |
||
34 | |||
35 | } |
||
36 | |||
37 | /** {@inheritDoc} */ |
||
38 | public function write($messages, $newline = false, $options = 0): void |
||
39 | { |
||
40 | $this->output->write($messages, $newline, $options); |
||
41 | } |
||
42 | |||
43 | /** |
||
44 | * @return resource |
||
45 | */ |
||
46 | public function getStream() |
||
49 | } |
||
50 | } |
||
51 |