This repository has been archived by the owner on Jan 31, 2020. It is now read-only.
Added
-
#53 adds the ability to automatically generate WSDL documentation
for complex types. To do so, either create an implementation of the new interface
Zend\Soap\Wsdl\DocumentationStrategy\DocumentationStrategyInterface
, or use the
shippedZend\Soap\Wsdl\DocumentationStrategy\ReflectionDocumentation
, and attach
it to any ComplexTypeStrategy using itssetDocumentationStategy()
method:$strategy = new ArrayOfTypeSequence(); $strategy->setDocumentationStrategy(new ReflectionDocumentation());
-
#52 adds support for for
thexsd:dateTime
type, mapping it to PHPDateTime
instances. -
#59 adds support for PHP 7.3.
Changed
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- Nothing.