| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | 1 | protected function loadCommandLineOptions(ContainerBuilder $containerBuilder, InputInterface $input) |
|
| 24 | { |
||
| 25 | 1 | parent::loadCommandLineOptions($containerBuilder, $input); |
|
| 26 | |||
| 27 | 1 | $containerBuilder->setParameter('paraunit.coverage.clover_file_path', $input->getOption('clover')); |
|
| 28 | 1 | $containerBuilder->setParameter('paraunit.coverage.xml_file_path', $input->getOption('xml')); |
|
| 29 | 1 | $containerBuilder->setParameter('paraunit.coverage.html_path', $input->getOption('html')); |
|
| 30 | 1 | } |
|
| 31 | } |
||
| 32 |