academe / omnipay-datatrans

Omnipay Datatrans
MIT License
4 stars 4 forks source link

Empty body for response with psr/http-message v2 #16

Open Axent96 opened 2 months ago

Axent96 commented 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();

        $xmlString = simplexml_load_string($xmlString);
        return static::parseXmlElement($xmlString);
    }

`

Axent96 commented 2 months ago

17 Pull Request