Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 509 Bytes

UPGRADE-3.0.md

File metadata and controls

15 lines (12 loc) · 509 Bytes

UPGRADE FROM 2.0 to 3.0

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);