From 3677c4c21c006d4dc5621d82c966ba2d693a044c Mon Sep 17 00:00:00 2001 From: homersimpsons Date: Mon, 20 Feb 2023 17:03:53 +0100 Subject: [PATCH] :bug: Fix PHP8 compatibility --- src/Parser/Ast/ArgumentValue/Variable.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Parser/Ast/ArgumentValue/Variable.php b/src/Parser/Ast/ArgumentValue/Variable.php index 63b9d01d..b8b76d46 100644 --- a/src/Parser/Ast/ArgumentValue/Variable.php +++ b/src/Parser/Ast/ArgumentValue/Variable.php @@ -49,7 +49,7 @@ class Variable extends AbstractAst implements ValueInterface * @param bool $arrayElementNullable * @param Location $location */ - public function __construct($name, $type, $nullable, $isArray, $arrayElementNullable = true, Location $location) + public function __construct($name, $type, $nullable, $isArray, $arrayElementNullable, Location $location) { parent::__construct($location);