Skip to content

Commit

Permalink
Fix type of DomElement childNodes property (#5403)
Browse files Browse the repository at this point in the history
Partially addresses #5291
  • Loading branch information
theodorejb authored Mar 16, 2021
1 parent ae247d0 commit 5b9efd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dictionaries/PropertyMap.php
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@
'nodeValue' => 'string',
'nodeType' => 'int',
'parentNode' => 'DOMNode|null',
'childNodes' => 'DOMNodeList',
'childNodes' => 'DomNodeList<DomNode>',
'firstChild' => 'DOMNode|null',
'lastChild' => 'DOMNode|null',
'previousSibling' => 'DOMNode|null',
Expand Down

0 comments on commit 5b9efd5

Please sign in to comment.