Total Complexity | 3 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | final class SymfonyConsoleTextFormatter implements OutputFormatter |
||
11 | { |
||
12 | /** |
||
13 | * @var OutputInterface |
||
14 | */ |
||
15 | private $output; |
||
16 | |||
17 | public function __construct(OutputInterface $output) |
||
18 | { |
||
19 | $this->output = $output; |
||
20 | } |
||
21 | |||
22 | public function write(Changes $changes) : void |
||
27 | } |
||
28 | } |
||
30 |