diff --git a/src/DependencyInjection/Configuration.php b/src/DependencyInjection/Configuration.php index 46c9c90d..0ba0e45e 100644 --- a/src/DependencyInjection/Configuration.php +++ b/src/DependencyInjection/Configuration.php @@ -135,11 +135,11 @@ public function getConfigTreeBuilder(): TreeBuilder ->booleanNode('send_default_pii')->end() ->integerNode('max_value_length')->min(0)->end() ->scalarNode('http_proxy')->end() - ->integerNode('http_connect_timeout') + ->floatNode('http_connect_timeout') ->min(0) ->info('The maximum number of seconds to wait while trying to connect to a server. It works only when using the default transport.') ->end() - ->integerNode('http_timeout') + ->floatNode('http_timeout') ->min(0) ->info('The maximum execution time for the request+response as a whole. It works only when using the default transport.') ->end()