Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function getConfigTreeBuilder() |
||
14 | { |
||
15 | $treeBuilder = new TreeBuilder(); |
||
16 | $rootNode = $treeBuilder->root('psi_object_render'); |
||
17 | $rootNode->children() |
||
18 | ->arrayNode('mapping') |
||
19 | ->info('Path mapping for object template location') |
||
20 | ->useAttributeAsKey('namespace') |
||
21 | ->prototype('scalar')->info('namespace => path')->end() |
||
22 | ->end(); |
||
23 | |||
24 | return $treeBuilder; |
||
25 | } |
||
26 | } |
||
27 |