Skip to content

Commit

Permalink
Fix return type
Browse files Browse the repository at this point in the history
  • Loading branch information
giansalex committed Jul 2, 2022
1 parent b481c02 commit befcf12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ws/src/Ws/Reader/DomCdrReader.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ private function getNotes(): array

/** @var \DOMElement $node */
foreach ($nodes as $node) {
$notes[] = $node->nodeValue;
$notes[] = $node->nodeValue ?? '';
}

return $notes;
Expand Down

0 comments on commit befcf12

Please sign in to comment.