From 8db1e2b6043ddc73ff4dc2a43beaf15ff8753749 Mon Sep 17 00:00:00 2001 From: odain Date: Wed, 8 Apr 2026 14:55:15 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B08955=20-=20fix=20=20Implicitly=20marking?= =?UTF-8?q?=20parameter=20=20as=20nullable=20is=20deprecated?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sources/Application/UI/Base/Component/Badge/Badge.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/Application/UI/Base/Component/Badge/Badge.php b/sources/Application/UI/Base/Component/Badge/Badge.php index cf571d914..9ccddb0f9 100644 --- a/sources/Application/UI/Base/Component/Badge/Badge.php +++ b/sources/Application/UI/Base/Component/Badge/Badge.php @@ -37,7 +37,7 @@ class Badge extends UIBlock private string $sColor; private string $sTooltip; - public function __construct(string $sLabel, string $sColor = self::DEFAULT_COLOR_SCHEME, string $sTooltip = '', string $sId = null) + public function __construct(string $sLabel, string $sColor = self::DEFAULT_COLOR_SCHEME, string $sTooltip = '', ?string $sId = null) { parent::__construct($sId);