| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | 6 | public function getConfigTreeBuilder() |
|
| 19 | { |
||
| 20 | 6 | $treeBuilder = new TreeBuilder(); |
|
| 21 | 6 | $rootNode = $treeBuilder->root('fi_core'); |
|
| 22 | |||
| 23 | 6 | $rootNode = $treeBuilder->root('fi_core')->children() |
|
| 24 | 6 | ->booleanNode('testroutes')->defaultTrue()->end() |
|
| 25 | 6 | ->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 | 6 | return $treeBuilder; |
|
| 31 | } |
||
| 33 |