Skip to content

Commit 23f9fd2

Browse files
committed
Merge branch '6.4' into 7.3
* 6.4: register attribute loader arguments in a forward-compatible way mark test using a Redis connection as an integration test ensure compatibility with Relay extension 0.20.0 [DependencyInjection] Fix `query_string` env processor for URLs without query string [DependencyInjection] Fix state corruption in PhpFileLoader during recursive imports [FrameworkBundle] Add missing `useAttributeAsKey` calls [DependencyInjection] Fix loose validation in #[Autowire] attribute [HttpClient] Fix releasing uploaded stream resources
2 parents c455f54 + 716dbdc commit 23f9fd2

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

DependencyInjection/Configuration.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1927,6 +1927,7 @@ private function addHttpClientSection(ArrayNodeDefinition $rootNode, callable $e
19271927
->end()
19281928
->arrayNode('vars')
19291929
->info('Associative array: the default vars used to expand the templated URI.')
1930+
->useAttributeAsKey('name')
19301931
->normalizeKeys(false)
19311932
->variablePrototype()->end()
19321933
->end()
@@ -2007,6 +2008,7 @@ private function addHttpClientSection(ArrayNodeDefinition $rootNode, callable $e
20072008
->end()
20082009
->arrayNode('extra')
20092010
->info('Extra options for specific HTTP client.')
2011+
->useAttributeAsKey('name')
20102012
->normalizeKeys(false)
20112013
->variablePrototype()->end()
20122014
->end()
@@ -2162,6 +2164,7 @@ private function addHttpClientSection(ArrayNodeDefinition $rootNode, callable $e
21622164
->end()
21632165
->arrayNode('extra')
21642166
->info('Extra options for specific HTTP client.')
2167+
->useAttributeAsKey('name')
21652168
->normalizeKeys(false)
21662169
->variablePrototype()->end()
21672170
->end()

0 commit comments

Comments
 (0)