Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | public function getConfigTreeBuilder() |
||
22 | { |
||
23 | $treeBuilder = new TreeBuilder(); |
||
24 | $rootNode = $treeBuilder->root('ph_core'); |
||
25 | |||
26 | $rootNode |
||
27 | ->addDefaultsIfNotSet() |
||
28 | ->children() |
||
29 | ->scalarNode('driver')->defaultValue(SyliusResourceBundle::DRIVER_DOCTRINE_ORM)->end() |
||
30 | ->end() |
||
31 | ; |
||
32 | |||
33 | return $treeBuilder; |
||
34 | } |
||
35 | } |
||
36 |