Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function load(array $configs, ContainerBuilder $container) |
||
24 | { |
||
25 | $configuration = new Configuration(); |
||
26 | $config = $this->processConfiguration($configuration, $configs); |
||
27 | $container->setParameter('cwd_datamolino.client_id', $config['client_id']); |
||
28 | $container->setParameter('cwd_datamolino.client_secret', $config['client_secret']); |
||
29 | $container->setParameter('cwd_datamolino.datamolino_host', $config['datamolino_host']); |
||
30 | $container->setParameter('cwd_datamolino.username', $config['username']); |
||
31 | $container->setParameter('cwd_datamolino.password', $config['password']); |
||
32 | |||
33 | $loader = new YamlFileLoader( |
||
34 | $container, |
||
35 | new FileLocator(__DIR__.'/../Resources/config') |
||
36 | ); |
||
37 | $loader->load('services.yaml'); |
||
38 | } |
||
40 |
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