Skip to content

Commit 7ec9105

Browse files
author
Martin Brecht-Precht
committed
Fixed an issue with the HtmlHandler returning null.
1 parent 4a2b20c commit 7ec9105

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Handler/HtmlHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ public function onContentsEnd(): void
541541
*/
542542
public function getResult(): string
543543
{
544-
return $this->htmlBuilder->build();
544+
return (string)$this->htmlBuilder->build();
545545
}
546546

547547
}

0 commit comments

Comments
 (0)