Based on https://github.com/zendframework/zend-soap/releases/tag/release-2.8.0 (commit 91d09edc9e59839050a5bc7bf2f0fd45cdde444b in this repo)
Added
-----
- [zendframework/zend-soap#53](https://github.com/zendframework/zend-soap/pull/53) adds the ability to automatically generate WSDL documentation
for complex types. To do so, either create an implementation of the new interface
`Laminas\Soap\Wsdl\DocumentationStrategy\DocumentationStrategyInterface`, or use the
shipped `Laminas\Soap\Wsdl\DocumentationStrategy\ReflectionDocumentation`, and attach
it to any ComplexTypeStrategy using its `setDocumentationStategy()` method:
```php
$strategy = new ArrayOfTypeSequence();
$strategy->setDocumentationStrategy(new ReflectionDocumentation());
```
- [zendframework/zend-soap#52](https://github.com/zendframework/zend-soap/pull/52) adds support for for
the `xsd:dateTime` type, mapping it to PHP `DateTime` instances.
- [zendframework/zend-soap#59](https://github.com/zendframework/zend-soap/pull/59) adds support for PHP 7.3.
Changed
-------
- Nothing.
Deprecated
----------
- Nothing.
Removed
-------
- Nothing.
Fixed
-----
- Nothing.