We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
@return
1 parent f212e05 commit cc2de36Copy full SHA for cc2de36
Tests/Resources/TranslationFilesTest.php
@@ -36,7 +36,9 @@ public function testTranslationFileIsValidWithoutEntityLoader($filePath)
36
{
37
$document = new \DOMDocument();
38
$document->loadXML(file_get_contents($filePath));
39
- libxml_disable_entity_loader(true);
+ if (\LIBXML_VERSION < 20900) {
40
+ libxml_disable_entity_loader(true);
41
+ }
42
43
$errors = XliffUtils::validateSchema($document);
44
0 commit comments