Open Axent96 opened 2 months ago
"psr/http-message": "^2.0"
The src/Helper.php need to be updated ` if ($httpMessage instanceof ResponseInterface) { $xmlString = (string)$httpMessage->getBody();
$xmlString = simplexml_load_string($xmlString); return static::parseXmlElement($xmlString); }
to if ($httpMessage instanceof ResponseInterface) { $xmlString = $httpMessage->getBody()->getContents();
to
`
"psr/http-message": "^2.0"
The src/Helper.php need to be updated ` if ($httpMessage instanceof ResponseInterface) { $xmlString = (string)$httpMessage->getBody();
to
if ($httpMessage instanceof ResponseInterface) { $xmlString = $httpMessage->getBody()->getContents();`