| Total Complexity | 4 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | class Crap4j extends AbstractReportProcessor |
||
| 17 | { |
||
| 18 | protected $defaultOptions = [ |
||
| 19 | 'target' => 'build/logs/crap4j.xml', |
||
| 20 | ]; |
||
| 21 | |||
| 22 | public function __construct(array $options = []) |
||
| 23 | { |
||
| 24 | parent::__construct($options); |
||
| 25 | } |
||
| 26 | |||
| 27 | public function getProcessorClass(): string |
||
| 28 | { |
||
| 29 | return \SebastianBergmann\CodeCoverage\Report\Crap4j::class; |
||
|
|
|||
| 30 | } |
||
| 31 | |||
| 32 | public function getOutputType(): string |
||
| 33 | { |
||
| 34 | return static::OUTPUT_FILE; |
||
| 35 | } |
||
| 36 | |||
| 37 | public function getType(): string |
||
| 40 | } |
||
| 41 | } |
||
| 42 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths