PHP Classes

File: UPGRADE-3.0.md

Recommend this page to a friend!
  Classes of WsdlToPhp   Package Base   UPGRADE-3.0.md   Download  
File: UPGRADE-3.0.md
Role: Auxiliary data
Content type: text/markdown
Description: Auxiliary data
Class: Package Base
Base classes for implementing a package generator
Author: By
Last change:
Date: 3 years ago
Size: 509 bytes
 

Contents

Class file image Download

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