From f8bf30e097d1318d656d67c093fd116ae0c69aaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Tamarelle?= Date: Wed, 24 Apr 2024 16:09:39 +0200 Subject: [PATCH] Make implicit nullable param to explicit (PHP 8.4 compatibility) --- src/Ray.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ray.php b/src/Ray.php index f0718ba..d5da0fe 100644 --- a/src/Ray.php +++ b/src/Ray.php @@ -107,7 +107,7 @@ class Ray /** @var Closure|null */ public static $beforeSendRequest = null; - public static function create(?Client $client = null, string $uuid = null): self + public static function create(?Client $client = null, ?string $uuid = null): self { $settings = SettingsFactory::createFromConfigFile();