Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
36 | public function getConfigTreeBuilder() |
||
37 | { |
||
38 | $treeBuilder = new TreeBuilder(); |
||
39 | $rootNode = $treeBuilder->root('graviton_core'); |
||
40 | |||
41 | $rootNode |
||
42 | ->children() |
||
43 | ->arrayNode('service_name') |
||
44 | ->prototype('scalar')->end() |
||
45 | ->end() |
||
46 | ->arrayNode('uri_whitelist') |
||
47 | ->prototype('scalar')->end() |
||
48 | ->end() |
||
49 | ->end(); |
||
50 | |||
51 | return $treeBuilder; |
||
52 | } |
||
53 | } |