1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-30 04:39:00 +01:00

Made the nodeValue nullable as indicated by the docs.

This commit is contained in:
Kevin van Sonsbeek 2022-01-27 19:19:57 +01:00
parent f6a89215ec
commit 6b59dd9c66

View File

@ -370,7 +370,7 @@ return [
],
'domnode' => [
'nodeName' => 'string',
'nodeValue' => 'string',
'nodeValue' => 'string|null',
'nodeType' => 'int',
'parentNode' => 'DOMNode|null',
'childNodes' => 'DomNodeList<DomNode>',