From e8ab36362e09b7c1aea6999fa4886f2aef554941 Mon Sep 17 00:00:00 2001 From: "M. Vugteveen" Date: Fri, 21 Mar 2025 11:38:04 +0100 Subject: [PATCH] Fixes php8.4 deprecated errorr --- src/ApiConnector.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ApiConnector.php b/src/ApiConnector.php index cfce81f..0c3133d 100644 --- a/src/ApiConnector.php +++ b/src/ApiConnector.php @@ -20,7 +20,7 @@ class ApiConnector public function __construct( - string $accessToken = null, + ?string $accessToken = null, int $requestTimeout = 60, bool $verify = true )