Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 10 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
25 | 1 | public function getConfigTreeBuilder() |
|
26 | { |
||
27 | 1 | $treeBuilder = new TreeBuilder(); |
|
28 | 1 | $rootNode = $treeBuilder->root('sulu_activity_log'); |
|
29 | 1 | $rootNode->children() |
|
30 | 1 | ->arrayNode('storage') |
|
31 | 1 | ->children() |
|
32 | 1 | ->scalarNode('service_id')->end() |
|
33 | 1 | ->end() |
|
34 | 1 | ->end(); |
|
35 | |||
36 | 1 | return $treeBuilder; |
|
37 | } |
||
38 | } |
||
39 |