From 00fc21322c5cca3a398f0df9f08964a651f2db81 Mon Sep 17 00:00:00 2001 From: Lorenzo Yario Date: Sun, 22 Dec 2024 14:54:48 -0600 Subject: [PATCH] 7.4 compatibility --- inc/Data/Driver/HttpDriver.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/Data/Driver/HttpDriver.php b/inc/Data/Driver/HttpDriver.php index 022fcbab..d23230df 100644 --- a/inc/Data/Driver/HttpDriver.php +++ b/inc/Data/Driver/HttpDriver.php @@ -98,7 +98,7 @@ class HttpDriver { * @return bool Returns true on success, false if the file was too large. * @throws RuntimeException Throws on IO error. */ - public function requestGetInto(string $endpoint, ?array $data, mixed $fd, int $timeout = 0): bool { + public function requestGetInto(string $endpoint, ?array $data, $fd, int $timeout = 0): bool { if (!empty($data)) { $endpoint .= '?' . \http_build_query($data); }