Conditions | 1 |
Paths | 1 |
Total Lines | 19 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
27 | public function getConfigTreeBuilder() |
||
28 | { |
||
29 | $treeBuilder = new TreeBuilder(); |
||
30 | |||
31 | $rootNode = $treeBuilder->root('run_open_code_query_resources_loader'); |
||
32 | |||
33 | $rootNode |
||
34 | ->addDefaultsIfNotSet() |
||
35 | ->children() |
||
36 | ->scalarNode('default_executor') |
||
37 | ->defaultValue(null) |
||
38 | ->info('Default executor that will be used in "execute" calls. If not stated, first registered executor will be default one.') |
||
39 | ->end() |
||
40 | ->append(new TwigNodeDefinition()) |
||
41 | ->end() |
||
42 | ; |
||
43 | |||
44 | return $treeBuilder; |
||
45 | } |
||
46 | } |
||
47 |