Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | public function getConfigTreeBuilder() |
||
28 | { |
||
29 | return (new TreeBuilder()) |
||
30 | ->root('gpslab_domain_event') |
||
31 | ->children() |
||
32 | ->scalarNode('locator') |
||
33 | ->cannotBeEmpty() |
||
34 | ->defaultValue('named_event') |
||
35 | ->end() |
||
36 | ->scalarNode('name_resolver') |
||
37 | ->cannotBeEmpty() |
||
38 | ->defaultValue('event_class') |
||
39 | ->end() |
||
40 | ->end() |
||
41 | ->end() |
||
42 | ; |
||
43 | } |
||
44 | } |
||
45 |