From 3df0c4dba33ecbfaf8af2fe74208f05d9a835758 Mon Sep 17 00:00:00 2001 From: Sage Pointer Date: Mon, 24 Nov 2025 02:04:08 +0200 Subject: [PATCH] Fix implicitly nullable parameter warning in PHP 8.4+ --- src/JsPhpize/Nodes/Dyiade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/JsPhpize/Nodes/Dyiade.php b/src/JsPhpize/Nodes/Dyiade.php index ac0f322..168eb61 100644 --- a/src/JsPhpize/Nodes/Dyiade.php +++ b/src/JsPhpize/Nodes/Dyiade.php @@ -26,7 +26,7 @@ class Dyiade extends Value */ protected $operator; - public function __construct($operator, Value $leftHand, Value $rightHand, array $before = null, array $after = null) + public function __construct($operator, Value $leftHand, Value $rightHand, ?array $before = null, ?array $after = null) { $this->operator = $operator; $this->leftHand = $leftHand;