<?php/** * @see https://github.com/zendframework/zend-soap for the canonical source repository * @copyright Copyright (c) 2005-2018 Zend Technologies USA Inc. (https://www.zend.com) * @license https://github.com/zendframework/zend-soap/blob/master/LICENSE.md New BSD License */namespaceZend\Soap\Wsdl\DocumentationStrategy;useReflectionClass;useReflectionProperty;/** * Implement this interface to provide contents for <xsd:documentation> elements on complex types */interfaceDocumentationStrategyInterface{/** * Returns documentation for complex type property * * @param ReflectionProperty $property * @return string */publicfunctiongetPropertyDocumentation(ReflectionProperty$property);/** * Returns documentation for complex type * * @param ReflectionClass $class * @return string */publicfunctiongetComplexTypeDocumentation(ReflectionClass$class);}