| Total Complexity | 4 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | class Crap4j extends AbstractReportProcessor |
||
| 6 | { |
||
| 7 | protected $defaultOptions = [ |
||
| 8 | 'target' => 'build/logs/crap4j.xml', |
||
| 9 | ]; |
||
| 10 | |||
| 11 | 2 | public function __construct(array $options = array()) |
|
| 12 | { |
||
| 13 | 2 | parent::__construct($options); |
|
| 14 | } |
||
| 15 | |||
| 16 | 2 | public function getProcessorClass(): string |
|
| 17 | { |
||
| 18 | 2 | return \SebastianBergmann\CodeCoverage\Report\Crap4j::class; |
|
| 19 | } |
||
| 20 | |||
| 21 | 2 | public function getOutputType(): string |
|
| 22 | { |
||
| 23 | 2 | return static::OUTPUT_FILE; |
|
| 24 | } |
||
| 25 | |||
| 26 | 1 | public function getType(): string |
|
| 29 | } |
||
| 30 | } |
||
| 31 |