Skip to content
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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Patch 1 #37

wants to merge 2 commits into from

Conversation

ew-andrew-sus
Copy link

Added compatibility for Guzzle ^7.2.0 version

@@ -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);
Copy link

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);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
return Query::build($query_params);
return Query::parse($query_params);

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants