Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | public function load(array $configs, ContainerBuilder $container) |
||
25 | { |
||
26 | $locator = new FileLocator(__DIR__.'/../Resources/config'); |
||
27 | $loader = new XmlFileLoader($container, $locator); |
||
28 | |||
29 | $configuration = $this->processConfiguration(new Configuration(), $configs); |
||
30 | |||
31 | $container->setParameter('reports', $configuration['reports']); |
||
32 | $container->setParameter('config.filter', $configuration['filter']); |
||
33 | |||
34 | $loader->load('code_coverage.xml'); |
||
35 | $loader->load('reports.xml'); |
||
36 | } |
||
43 |
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