Total Complexity | 5 |
Total Lines | 40 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class OutputGenerator |
||
11 | { |
||
12 | /** |
||
13 | * @var \Symfony\Component\Console\Output\OutputInterface |
||
14 | */ |
||
15 | private $output; |
||
16 | |||
17 | /** |
||
18 | * @param \Symfony\Component\Console\Output\OutputInterface $output |
||
19 | */ |
||
20 | public function __construct( |
||
24 | } |
||
25 | |||
26 | public function writeResolverException(PackageResolverException $exception) |
||
40 | ); |
||
41 | } |
||
42 | |||
43 | public function writeLines(array $lines) |
||
52 |