Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
22 | public function load(array $configs, ContainerBuilder $container) |
||
23 | { |
||
24 | $configuration = new Configuration(); |
||
25 | $config = $this->processConfiguration($configuration, $configs); |
||
26 | $container->setParameter('cwd_power_dns_client.uri', $config['uri']); |
||
27 | $container->setParameter('cwd_power_dns_client.api_key', $config['api_key']); |
||
28 | $container->setParameter('cwd_power_dns_client.default_server', $config['default_server']); |
||
29 | |||
30 | $loader = new YamlFileLoader( |
||
31 | $container, |
||
32 | new FileLocator(__DIR__.'/../Resources/config') |
||
33 | ); |
||
34 | $loader->load('services.yaml'); |
||
35 | } |
||
37 |
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