Skip to content

Commit a255eee

Browse files
committed
[generator] use libxml internal errors
printing huuuuge warning stack traces to stdout is unhelpful
1 parent 6deb259 commit a255eee

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

generator/src/XmlDocParser/DocPage.php

+1
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ public function loadAndResolveFile(): \SimpleXMLElement
126126
.'<!DOCTYPE refentry SYSTEM "'.$path.'">'
127127
.\substr($content, $strpos+1);
128128

129+
libxml_use_internal_errors(true);
129130
$elem = \simplexml_load_string($content, \SimpleXMLElement::class, LIBXML_DTDLOAD | LIBXML_NOENT);
130131
if ($elem === false) {
131132
throw new \RuntimeException('Invalid XML file for '.$this->path);

0 commit comments

Comments
 (0)