Skip to content

Patch 1#37

Open
ew-andrew-sus wants to merge 2 commits intodonutdan4114:masterfrom
ew-andrew-sus:patch-1
Open

Patch 1#37
ew-andrew-sus wants to merge 2 commits intodonutdan4114:masterfrom
ew-andrew-sus:patch-1

Conversation

@ew-andrew-sus
Copy link

Added compatibility for Guzzle ^7.2.0 version

$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);

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.

$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);

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

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