| Total Complexity | 4 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | class XML extends AbstractReportProcessor |
||
| 19 | { |
||
| 20 | protected $defaultOptions = [ |
||
| 21 | 'target' => 'build/xml', |
||
| 22 | ]; |
||
| 23 | |||
| 24 | 3 | protected function createProcessor(array $options) |
|
| 25 | { |
||
| 26 | 3 | $options['version'] = 'DoyoLabs-CustomCoverage'; |
|
| 27 | |||
| 28 | 3 | return parent::createProcessor($options); // TODO: Change the autogenerated stub |
|
| 29 | } |
||
| 30 | |||
| 31 | 3 | public function getProcessorClass(): string |
|
| 32 | { |
||
| 33 | 3 | return Facade::class; |
|
| 34 | } |
||
| 35 | |||
| 36 | 3 | public function getOutputType(): string |
|
| 37 | { |
||
| 38 | 3 | return static::OUTPUT_DIR; |
|
| 39 | } |
||
| 40 | |||
| 41 | 1 | public function getType(): string |
|
| 44 | } |
||
| 45 | } |
||
| 46 |