From 6b59dd9c6685d462a4b3be65ec79df4badf74700 Mon Sep 17 00:00:00 2001 From: Kevin van Sonsbeek Date: Thu, 27 Jan 2022 19:19:57 +0100 Subject: [PATCH] Made the nodeValue nullable as indicated by the docs. --- dictionaries/PropertyMap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dictionaries/PropertyMap.php b/dictionaries/PropertyMap.php index b97344960..e0f91665d 100644 --- a/dictionaries/PropertyMap.php +++ b/dictionaries/PropertyMap.php @@ -370,7 +370,7 @@ return [ ], 'domnode' => [ 'nodeName' => 'string', - 'nodeValue' => 'string', + 'nodeValue' => 'string|null', 'nodeType' => 'int', 'parentNode' => 'DOMNode|null', 'childNodes' => 'DomNodeList',