From e4c743cf8cfc57c7e51d336d8cd8d34357188e23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A1chym=20Tou=C5=A1ek?= Date: Tue, 9 Oct 2018 14:46:41 +0200 Subject: [PATCH] Fix annotation --- src/Language/AST/BooleanValueNode.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Language/AST/BooleanValueNode.php b/src/Language/AST/BooleanValueNode.php index 246fe35..1c89a7f 100644 --- a/src/Language/AST/BooleanValueNode.php +++ b/src/Language/AST/BooleanValueNode.php @@ -9,6 +9,6 @@ class BooleanValueNode extends Node implements ValueNode /** @var string */ public $kind = NodeKind::BOOLEAN; - /** @var string */ + /** @var bool */ public $value; }