From 1cb1d99114d477006bc409f9e46008c9c801b57b Mon Sep 17 00:00:00 2001 From: Roelof Kallenkoot Date: Fri, 6 May 2022 01:13:45 +0200 Subject: [PATCH] Fix: replace deprecated function parse_query The parse_query function has been removed in Guzzle 7.2, Query::parse is available in the Guzzle/Psr7 library and is the suggested alternative. Should still work with Guzzle 6. --- src/Http/Pagination.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Http/Pagination.php b/src/Http/Pagination.php index 70b84932..65353c0c 100644 --- a/src/Http/Pagination.php +++ b/src/Http/Pagination.php @@ -1,8 +1,9 @@