WsdlToPhp / PackageGenerator

Generates a PHP SDK based on a WSDL, simple and powerful, WSDL to PHP
https://providr.io
MIT License
426 stars 73 forks source link

Avoid repeated meta value within generated meta documentation #230

Closed mikaelcom closed 3 years ago

mikaelcom commented 3 years ago

Instead of having:

/**
 * The property
 * Meta information extracted from the WSDL
 * - documentation: meta information from WSDL
 * - base: xsd:string
 * - maxLength: 15
 * - maxOccurs: 1 | unbounded | 1 | 1 | unbounded | unbounded | 1 | 1 | unbounded | 1 | 1
 * - minLength: 1
 * - minOccurs: 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1
 * @var string
 */

It would be nicer to have:

/**
 * The property
 * Meta information extracted from the WSDL
 * - documentation: meta information from WSDL
 * - base: xsd:string
 * - maxLength: 15
 * - maxOccurs: 1 | unbounded
 * - minLength: 1
 * - minOccurs: 1 | 0
 * @var string
 */