Skip to content

Commit

Permalink
Merge pull request #7501 from KevinVanSonsbeek/bugfix/#7479-domtext-n…
Browse files Browse the repository at this point in the history
…odevalue-can-be-null

BugFix: Made DOMNode::nodeValue nullable
  • Loading branch information
orklah committed Jan 27, 2022
2 parents f6a8921 + 6b59dd9 commit a2ad69a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dictionaries/PropertyMap.php
Expand Up @@ -370,7 +370,7 @@
],
'domnode' => [
'nodeName' => 'string',
'nodeValue' => 'string',
'nodeValue' => 'string|null',
'nodeType' => 'int',
'parentNode' => 'DOMNode|null',
'childNodes' => 'DomNodeList<DomNode>',
Expand Down

0 comments on commit a2ad69a

Please sign in to comment.