Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function getConfigTreeBuilder() |
||
19 | { |
||
20 | $tree = new TreeBuilder(); |
||
21 | $root = $tree->root('darkilliant_process'); |
||
22 | |||
23 | $root |
||
24 | ->children() |
||
25 | ->arrayNode('process') |
||
26 | ->useAttributeAsKey('name') |
||
27 | ->prototype('variable')->end() |
||
28 | ->end() |
||
29 | ->end(); |
||
30 | |||
31 | return $tree; |
||
32 | } |
||
34 |