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