| Total Complexity | 4 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class XML extends AbstractReportProcessor |
||
| 8 | { |
||
| 9 | protected $defaultOptions = [ |
||
| 10 | 'target' => 'build/xml' |
||
| 11 | ]; |
||
| 12 | |||
| 13 | 2 | protected function createProcessor(array $options) |
|
| 14 | { |
||
| 15 | 2 | $options['version'] = 'DoyoLabs-CustomCoverage'; |
|
| 16 | 2 | return parent::createProcessor($options); // TODO: Change the autogenerated stub |
|
| 17 | } |
||
| 18 | |||
| 19 | |||
| 20 | 2 | public function getProcessorClass(): string |
|
| 21 | { |
||
| 22 | 2 | return Facade::class; |
|
| 23 | } |
||
| 24 | |||
| 25 | 2 | public function getOutputType(): string |
|
| 26 | { |
||
| 27 | 2 | return static::OUTPUT_DIR; |
|
| 28 | } |
||
| 29 | |||
| 30 | 1 | public function getType(): string |
|
| 33 | } |
||
| 34 | } |
||
| 35 |