The main change, apart from requiring PHP >= 7.4, is that Utils
and AbstractSoapClientBase
method getFormatedXml
has been renamed to getFormattedXml
(typo fix).
Previously:
WsdlToPhp\PackageBase\Utils::getFormatedXml($xmlString);
WsdlToPhp\PackageBase\AbstractSoapClientBase::getFormatedXml($xmlString);
Now:
WsdlToPhp\PackageBase\Utils::getFormattedXml($xmlString);
WsdlToPhp\PackageBase\AbstractSoapClientBase::getFormattedXml($xmlString);