_usedProperties['enabled'] = true; $this->enabled = $value; return $this; } /** * The maximum number of connections to a single host. * @default null * @param ParamConfigurator|int $value * @return $this */ public function maxHostConnections($value): static { $this->_usedProperties['maxHostConnections'] = true; $this->maxHostConnections = $value; return $this; } public function defaultOptions(array $value = []): \Symfony\Config\Framework\HttpClient\DefaultOptionsConfig { if (null === $this->defaultOptions) { $this->_usedProperties['defaultOptions'] = true; $this->defaultOptions = new \Symfony\Config\Framework\HttpClient\DefaultOptionsConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "defaultOptions()" has already been initialized. You cannot pass values the second time you call defaultOptions().'); } return $this->defaultOptions; } /** * The id of the service that should generate mock responses. It should be either an invokable or an iterable. * @default null * @param ParamConfigurator|mixed $value * @return $this */ public function mockResponseFactory($value): static { $this->_usedProperties['mockResponseFactory'] = true; $this->mockResponseFactory = $value; return $this; } /** * @return \Symfony\Config\Framework\HttpClient\ScopedClientConfig|$this */ public function scopedClient(string $name, mixed $value = []): \Symfony\Config\Framework\HttpClient\ScopedClientConfig|static { if (!\is_array($value)) { $this->_usedProperties['scopedClients'] = true; $this->scopedClients[$name] = $value; return $this; } if (!isset($this->scopedClients[$name]) || !$this->scopedClients[$name] instanceof \Symfony\Config\Framework\HttpClient\ScopedClientConfig) { $this->_usedProperties['scopedClients'] = true; $this->scopedClients[$name] = new \Symfony\Config\Framework\HttpClient\ScopedClientConfig($value); } elseif (1 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "scopedClient()" has already been initialized. You cannot pass values the second time you call scopedClient().'); } return $this->scopedClients[$name]; } public function __construct(array $value = []) { if (array_key_exists('enabled', $value)) { $this->_usedProperties['enabled'] = true; $this->enabled = $value['enabled']; unset($value['enabled']); } if (array_key_exists('max_host_connections', $value)) { $this->_usedProperties['maxHostConnections'] = true; $this->maxHostConnections = $value['max_host_connections']; unset($value['max_host_connections']); } if (array_key_exists('default_options', $value)) { $this->_usedProperties['defaultOptions'] = true; $this->defaultOptions = new \Symfony\Config\Framework\HttpClient\DefaultOptionsConfig($value['default_options']); unset($value['default_options']); } if (array_key_exists('mock_response_factory', $value)) { $this->_usedProperties['mockResponseFactory'] = true; $this->mockResponseFactory = $value['mock_response_factory']; unset($value['mock_response_factory']); } if (array_key_exists('scoped_clients', $value)) { $this->_usedProperties['scopedClients'] = true; $this->scopedClients = array_map(function ($v) { return \is_array($v) ? new \Symfony\Config\Framework\HttpClient\ScopedClientConfig($v) : $v; }, $value['scoped_clients']); unset($value['scoped_clients']); } if ([] !== $value) { throw new InvalidConfigurationException(sprintf('The following keys are not supported by "%s": ', __CLASS__).implode(', ', array_keys($value))); } } public function toArray(): array { $output = []; if (isset($this->_usedProperties['enabled'])) { $output['enabled'] = $this->enabled; } if (isset($this->_usedProperties['maxHostConnections'])) { $output['max_host_connections'] = $this->maxHostConnections; } if (isset($this->_usedProperties['defaultOptions'])) { $output['default_options'] = $this->defaultOptions->toArray(); } if (isset($this->_usedProperties['mockResponseFactory'])) { $output['mock_response_factory'] = $this->mockResponseFactory; } if (isset($this->_usedProperties['scopedClients'])) { $output['scoped_clients'] = array_map(function ($v) { return $v instanceof \Symfony\Config\Framework\HttpClient\ScopedClientConfig ? $v->toArray() : $v; }, $this->scopedClients); } return $output; } }