1
0
mirror of synced 2025-03-06 12:56:10 +03:00

#6633 #3788 documenting why simplexml_load_file() was not used

This commit is contained in:
Marco Pivetta 2017-08-18 21:08:14 +02:00
parent eb762dea23
commit 492fb50744
No known key found for this signature in database
GPG Key ID: 4167D3337FD9D629

View File

@ -838,6 +838,7 @@ class XmlDriver extends FileDriver
protected function loadMappingFile($file) protected function loadMappingFile($file)
{ {
$result = []; $result = [];
// Note: we do not use `simplexml_load_file()` because of https://bugs.php.net/bug.php?id=62577
$xmlElement = simplexml_load_string(file_get_contents($file)); $xmlElement = simplexml_load_string(file_get_contents($file));
if (isset($xmlElement->entity)) { if (isset($xmlElement->entity)) {