Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
58 | private function addHttpClientSection(ArrayNodeDefinition $node): void |
||
59 | { |
||
60 | $node |
||
61 | ->children() |
||
62 | ->arrayNode('http') |
||
63 | ->addDefaultsIfNotSet() |
||
64 | ->children() |
||
65 | ->scalarNode('client')->defaultValue('httplug.client.default')->end() |
||
66 | ->scalarNode('message_factory')->defaultValue('httplug.message_factory.default')->end() |
||
67 | ->end() |
||
68 | ->end() |
||
69 | ->end() |
||
70 | ; |
||
71 | } |
||
72 | } |
||
73 |