Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
38 | private function addHttpClientSection(ArrayNodeDefinition $node): void |
||
39 | { |
||
40 | $node |
||
41 | ->children() |
||
42 | ->arrayNode('http') |
||
43 | ->addDefaultsIfNotSet() |
||
44 | ->children() |
||
45 | ->scalarNode('client')->defaultValue('httplug.client.default')->end() |
||
46 | ->scalarNode('message_factory')->defaultValue('httplug.message_factory.default')->end() |
||
47 | ->end() |
||
48 | ->end() |
||
49 | ->end() |
||
50 | ; |
||
51 | } |
||
52 | } |
||
53 |