Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public function getConfigTreeBuilder() |
||
27 | { |
||
28 | $treeBuilder = new TreeBuilder(); |
||
29 | $treeBuilder->root('cwd_fancy_grid') |
||
30 | ->children() |
||
31 | ->scalarNode('license')->defaultNull()->end() |
||
32 | ->variableNode('js_options')->end() |
||
33 | ->end(); |
||
34 | |||
35 | // Here you should define the parameters that are allowed to |
||
36 | // configure your bundle. See the documentation linked above for |
||
37 | // more information on that topic. |
||
38 | |||
39 | return $treeBuilder; |
||
40 | } |
||
41 | } |
||
42 |