Total Complexity | 1 |
Total Lines | 44 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
15 | class ApplicationConfiguration implements ConfigurationInterface |
||
16 | { |
||
17 | const ROOT_NODE = 'configuration'; |
||
18 | const NODE_NAME = 'name'; |
||
19 | const NODE_DEFAULT_VALUE = 'default_value'; |
||
20 | |||
21 | const HOST = [ |
||
22 | self::NODE_NAME => 'host', |
||
23 | self::NODE_DEFAULT_VALUE => '192.168.1.1' |
||
24 | ]; |
||
25 | |||
26 | const USER = [ |
||
27 | self::NODE_NAME => 'user', |
||
28 | self::NODE_DEFAULT_VALUE => 'admin' |
||
29 | ]; |
||
30 | |||
31 | const PASSWORD = "password"; |
||
32 | |||
33 | |||
34 | public function getConfigTreeBuilder() |
||
59 | } |
||
60 | } |
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