|
@@ 43-46 (lines=4) @@
|
| 40 |
|
$coverageResult->addCoverageProcessor($clover); |
| 41 |
|
} |
| 42 |
|
|
| 43 |
|
if ($input->getOption('xml')) { |
| 44 |
|
$xml = new Xml(new OutputPath($input->getOption('xml'))); |
| 45 |
|
$coverageResult->addCoverageProcessor($xml); |
| 46 |
|
} |
| 47 |
|
|
| 48 |
|
if ($input->getOption('html')) { |
| 49 |
|
$html = new Html(new OutputPath($input->getOption('html'))); |
|
@@ 48-51 (lines=4) @@
|
| 45 |
|
$coverageResult->addCoverageProcessor($xml); |
| 46 |
|
} |
| 47 |
|
|
| 48 |
|
if ($input->getOption('html')) { |
| 49 |
|
$html = new Html(new OutputPath($input->getOption('html'))); |
| 50 |
|
$coverageResult->addCoverageProcessor($html); |
| 51 |
|
} |
| 52 |
|
|
| 53 |
|
if ($input->getOption('text')) { |
| 54 |
|
$text = new Text(new OutputFile($input->getOption('text'))); |