-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Patch 1 #37
base: master
Are you sure you want to change the base?
Patch 1 #37
Conversation
@@ -197,7 +197,8 @@ protected function parseUrlParams($url) { | |||
return []; | |||
} | |||
$query_params = parse_url($url, PHP_URL_QUERY); | |||
return parse_query($query_params); | |||
parse_str(parse_url($url, PHP_URL_QUERY), $query_params); | |||
return Query::build($query_params); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe this is changing the functionality, parse_query returns an array while Query::build returns a string.
@@ -197,7 +197,8 @@ protected function parseUrlParams($url) { | |||
return []; | |||
} | |||
$query_params = parse_url($url, PHP_URL_QUERY); | |||
return parse_query($query_params); | |||
parse_str(parse_url($url, PHP_URL_QUERY), $query_params); | |||
return Query::build($query_params); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
return Query::build($query_params); | |
return Query::parse($query_params); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added compatibility for Guzzle ^7.2.0 version