Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
20 | 3 | public function getConfigTreeBuilder(): TreeBuilder |
|
21 | { |
||
22 | 3 | $treeBuilder = new TreeBuilder; |
|
23 | 3 | $rootNode = $treeBuilder->root('dl_sitemap'); |
|
24 | |||
25 | $rootNode |
||
26 | 3 | ->children() |
|
27 | 3 | ->scalarNode('location_prefix') |
|
28 | 3 | ->defaultValue('') |
|
29 | 3 | ->end() |
|
30 | 3 | ->end(); |
|
31 | |||
32 | 3 | return $treeBuilder; |
|
33 | } |
||
34 | } |
||
35 |