We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e148788 + c10fe93 commit f8390f3Copy full SHA for f8390f3
HttpClientTrait.php
@@ -622,7 +622,6 @@ private static function mergeQueryString(?string $queryString, array $queryArray
622
'%28' => '(',
623
'%29' => ')',
624
'%2A' => '*',
625
- '%2C' => ',',
626
'%2F' => '/',
627
'%3A' => ':',
628
'%3B' => ';',
Tests/HttpClientTraitTest.php
@@ -176,7 +176,7 @@ public static function provideParseUrl(): iterable
176
yield [['http:', null, null, null, null], 'http:'];
177
yield [['http:', null, 'bar', null, null], 'http:bar'];
178
yield [[null, null, 'bar', '?a=1&c=c', null], 'bar?a=a&b=b', ['b' => null, 'c' => 'c', 'a' => 1]];
179
- yield [[null, null, 'bar', '?a=b+c&b=b-._~!$%26/%27()[]*%2B,;%3D:@%25\\^`{|}', null], 'bar?a=b+c', ['b' => 'b-._~!$&/\'()[]*+,;=:@%\\^`{|}']];
+ yield [[null, null, 'bar', '?a=b+c&b=b-._~!$%26/%27()[]*%2B%2C;%3D:@%25\\^`{|}', null], 'bar?a=b+c', ['b' => 'b-._~!$&/\'()[]*+,;=:@%\\^`{|}']];
180
yield [[null, null, 'bar', '?a=b%2B%20c', null], 'bar?a=b+c', ['a' => 'b+ c']];
181
yield [[null, null, 'bar', '?a[b]=c', null], 'bar', ['a' => ['b' => 'c']]];
182
yield [[null, null, 'bar', '?a[b[c]=d', null], 'bar?a[b[c]=d', []];
0 commit comments