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.
1 parent 97330bc commit cc698d5Copy full SHA for cc698d5
src/Url.php
@@ -459,10 +459,10 @@ protected function parseUrl($url)
459
460
parse_str($queryString, $query);
461
462
- $this->info['query'] = (array) $query;
+ $this->info['query'] = [];
463
464
- foreach ($this->info['query'] as $key => $value) {
465
- $fixed[hex2bin($key)] = $value;
+ foreach ((array) $query as $key => $value) {
+ $this->info['query'][hex2bin($key)] = $value;
466
}
467
468
array_walk_recursive($this->info['query'], function (&$value) {
0 commit comments