Skip to content

Commit bea1307

Browse files
committed
Merge branch '6.3' into 6.4
* 6.3: Make FormPerformanceTestCase compatible with PHPUnit 10 [Security] Fix resetting traceable listeners [HttpClient] Fix type error with http_version 1.1 [FrameworkBundle] Fix call to invalid method in NotificationAssertionsTrait [Validator] Add missing italian translations Fix order array sum normalizedData and nestedData Fix duplicate component in UPGRADE-6.3.md [Notifier] Tweak an error message Change incorrect message, when the sender in the global envelope or the from header of asEmailMessage() is not defined. [Messenger] Check if PCNTL is installed Bump Symfony version to 6.3.6 Update VERSION for 6.3.5 Update CHANGELOG for 6.3.5 Bump Symfony version to 5.4.30 Update VERSION for 5.4.29 Update CONTRIBUTORS for 5.4.29 Update CHANGELOG for 5.4.29 [Mailer] [Mailgun] Fix outlook sender
2 parents 466e92f + ab8446f commit bea1307

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

AmpHttpClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public function request(string $method, string $url, array $options = []): Respo
122122
if ($options['http_version']) {
123123
$request->setProtocolVersions(match ((float) $options['http_version']) {
124124
1.0 => ['1.0'],
125-
1.1 => $request->setProtocolVersions(['1.1', '1.0']),
125+
1.1 => ['1.1', '1.0'],
126126
default => ['2', '1.1', '1.0'],
127127
});
128128
}

0 commit comments

Comments
 (0)