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