Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
18 | 6 | public function getConfigTreeBuilder() |
|
19 | { |
||
20 | 6 | $treeBuilder = new TreeBuilder(); |
|
21 | 6 | $rootNode = $treeBuilder->root('elastica_provider'); |
|
22 | |||
23 | $rootNode |
||
24 | 6 | ->children() |
|
25 | 6 | ->scalarNode('default_client') |
|
26 | 6 | ->defaultValue(null) |
|
27 | 6 | ->end() |
|
28 | 6 | ->end() |
|
29 | ; |
||
30 | |||
31 | 6 | return $treeBuilder; |
|
32 | } |
||
33 | } |