Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | 19 | private static function addCacheDirectoryPathConfigurationNode(NodeBuilder $nodeBuilder, ?string $defaultCacheDirectoryPath): NodeBuilder |
|
23 | { |
||
24 | return $nodeBuilder |
||
|
|||
25 | 19 | ->scalarNode('cache_directory_path') |
|
26 | 19 | ->cannotBeEmpty() |
|
27 | 19 | ->defaultValue($defaultCacheDirectoryPath) |
|
28 | 19 | ->end(); |
|
29 | } |
||
43 |