From 6f53ebe44ac188ed96f161cc4b9f78776c94a916 Mon Sep 17 00:00:00 2001 From: Ivan Date: Tue, 7 Oct 2025 20:32:09 -0400 Subject: [PATCH] Make nullable parameters explicity nullable for PHP 8.4 --- src/CurlClient.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CurlClient.php b/src/CurlClient.php index 232e0ff..34a2597 100644 --- a/src/CurlClient.php +++ b/src/CurlClient.php @@ -9,7 +9,7 @@ class CurlClient protected ?string $baseUri = null; protected string $apiKey; - public function __construct(string $apiKey, string $baseUri = null) + public function __construct(string $apiKey, ?string $baseUri = null) { $this->baseUri = $baseUri; $this->apiKey = $apiKey;