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