Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
18 | public function getConfigTreeBuilder() |
||
19 | { |
||
20 | $treeBuilder = new TreeBuilder(); |
||
21 | $rootNode = $treeBuilder->root('fi_core'); |
||
22 | |||
23 | $rootNode = $treeBuilder->root('fi_core')->children() |
||
24 | ->booleanNode('testroutes')->defaultTrue()->end() |
||
25 | ->booleanNode('testdb')->defaultTrue()->end(); |
||
26 | // Here you should define the parameters that are allowed to |
||
27 | // configure your bundle. See the documentation linked above for |
||
28 | // more information on that topic. |
||
29 | |||
30 | return $treeBuilder; |
||
31 | } |
||
33 |