Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
57 | protected function processClients(NodeBuilder $builder): void |
||
58 | { |
||
59 | $children = $builder->arrayNode('http_clients') |
||
60 | ->prototype('array') |
||
61 | ->children() |
||
62 | ->scalarNode('base_url') |
||
63 | ->isRequired() |
||
64 | ->cannotBeEmpty() |
||
65 | ->end() |
||
66 | |||
67 | ->arrayNode('decorators') |
||
68 | ->prototype('scalar') |
||
69 | ->end() |
||
70 | ->end(); |
||
71 | |||
72 | $this->processEndpoints($children); |
||
73 | } |
||
74 | |||
94 | } |