Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 13 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
56 | 3 | private function addClassSection(ArrayNodeDefinition $node) |
|
57 | { |
||
58 | $node |
||
59 | 3 | ->children() |
|
60 | 3 | ->arrayNode('class') |
|
61 | 3 | ->addDefaultsIfNotSet() |
|
62 | 3 | ->children() |
|
63 | 3 | ->scalarNode('dispatcher') |
|
64 | 3 | ->defaultValue(Service\Dispatcher::class) |
|
65 | 3 | ->cannotBeEmpty() |
|
66 | 3 | ->end() |
|
67 | 3 | ->end() |
|
68 | 3 | ->end() |
|
69 | 3 | ->end(); |
|
70 | 3 | } |
|
71 | } |
||
72 |