Conditions | 1 |
Paths | 1 |
Total Lines | 19 |
Code Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | public function getConfigTreeBuilder() |
||
26 | { |
||
27 | $treeBuilder = new TreeBuilder(); |
||
28 | $treeBuilder->root('lin3s_cms_kernel') |
||
29 | ->children() |
||
30 | ->scalarNode('command_bus')->defaultValue('simple_bus')->end() |
||
31 | ->arrayNode('templates') |
||
32 | ->children() |
||
33 | ->arrayNode('class_map') |
||
34 | ->prototype('array') |
||
35 | ->prototype('scalar')->end() |
||
36 | ->end() |
||
37 | ->end() |
||
38 | ->end() |
||
39 | ->end() |
||
40 | ->end(); |
||
41 | |||
42 | return $treeBuilder; |
||
43 | } |
||
44 | } |
||
45 |