1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 12:55:26 +01:00

Merge pull request #7501 from KevinVanSonsbeek/bugfix/#7479-domtext-nodevalue-can-be-null

BugFix: Made DOMNode::nodeValue nullable
This commit is contained in:
orklah 2022-01-27 20:00:37 +01:00 committed by GitHub
commit a2ad69ae4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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