Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

zend-soap 2.8.0

Latest
Compare
Choose a tag to compare
@Xerkus Xerkus released this 30 Apr 17:10
· 3 commits to master since this release
release-2.8.0
8762d79

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
    shipped Zend\Soap\Wsdl\DocumentationStrategy\ReflectionDocumentation, and attach
    it to any ComplexTypeStrategy using its setDocumentationStategy() method:

    $strategy = new ArrayOfTypeSequence();
    $strategy->setDocumentationStrategy(new ReflectionDocumentation());
  • #52 adds support for for
    the xsd:dateTime type, mapping it to PHP DateTime instances.

  • #59 adds support for PHP 7.3.

Changed

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • Nothing.