/home/techb158/immovalet.com/vendor/aws/aws-sdk-php/src/Api/Parser
NameSizeModeActions
Exception/-0755rm
AbstractParser.php10060644editdlrm
AbstractRestParser.php56030644editdlrm
Crc32ValidatingParser.php15160644editdlrm
DecodingEventStreamIterator.php88160644editdlrm
EventParsingIterator.php29560644editdlrm
JsonParser.php16030644editdlrm
JsonRpcParser.php13210644editdlrm
MetadataParserTrait.php26350644editdlrm
PayloadParserTrait.php14750644editdlrm
QueryParser.php17690644editdlrm
RestJsonParser.php12460644editdlrm
RestXmlParser.php10830644editdlrm
XmlParser.php48500644editdlrm
Edit: /home/techb158/immovalet.com/vendor/aws/aws-sdk-php/src/Api/Parser/PayloadParserTrait.php (1475B)
$response] ); } return $jsonPayload; } /** * @param string $xml * * @throws ParserException * * @return \SimpleXMLElement */ protected function parseXml($xml, $response) { $priorSetting = libxml_use_internal_errors(true); try { libxml_clear_errors(); $xmlPayload = new \SimpleXMLElement($xml); if ($error = libxml_get_last_error()) { throw new \RuntimeException($error->message); } } catch (\Exception $e) { throw new ParserException( "Error parsing XML: {$e->getMessage()}", 0, $e, ['response' => $response] ); } finally { libxml_use_internal_errors($priorSetting); } return $xmlPayload; } }