| Total Lines | 16 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | return static function (ContainerConfigurator $containerConfigurator): void { |
||
| 11 | $parameters = $containerConfigurator->parameters(); |
||
| 12 | $parameters->set(Option::SETS, [ |
||
| 13 | SetList::CLEAN_CODE, |
||
| 14 | SetList::PSR_12, |
||
| 15 | SetList::SYMFONY, |
||
| 16 | SetList::SYMPLIFY |
||
| 17 | ]); |
||
| 18 | |||
| 19 | $parameters->set(Option::PATHS, [ |
||
| 20 | __DIR__ . '/src', |
||
| 21 | __DIR__ . '/tests', |
||
| 22 | ]); |
||
| 23 | |||
| 24 | $parameters->set(Option::SKIP, [ |
||
| 25 | LineLengthFixer::class => null |
||
| 26 | ]); |
||
| 27 | }; |
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