Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 3 |
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('ez_migration_bundle'); |
||
|
|||
22 | |||
23 | // Here you should define the parameters that are allowed to |
||
24 | // configure your bundle. See the documentation linked above for |
||
25 | // more information on that topic. |
||
26 | |||
27 | /*$rootNode->children() |
||
28 | ->scalarNode('version_directory')->defaultValue('MigrationVersion')->cannotBeEmpty()->end() |
||
29 | ->scalarNode('table_name')->defaultValue('kaliop_versions')->cannotBeEmpty()->end() |
||
30 | ->end();*/ |
||
31 | |||
32 | return $treeBuilder; |
||
33 | } |
||
35 |