From e56c630a2a4813443087320d47aaf46cebcb38b7 Mon Sep 17 00:00:00 2001 From: Tom Donahue Date: Mon, 2 Mar 2026 16:07:49 -0500 Subject: [PATCH] PHP 8.4 fix explicit nullable deprecations --- docs/examples/04-adding-your-own-tag.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples/04-adding-your-own-tag.php b/docs/examples/04-adding-your-own-tag.php index 2e7ff75e..63dbb2f3 100644 --- a/docs/examples/04-adding-your-own-tag.php +++ b/docs/examples/04-adding-your-own-tag.php @@ -53,7 +53,7 @@ final class MyTag extends BaseTag * * @see BaseTag for the declaration of the description property and getDescription method. */ - public function __construct(Description $description = null) + public function __construct(?Description $description = null) { $this->description = $description; }