Is there a documenation tag one can use in the addComplex type and register commands:
$server->wsdl->addComplexType(
'Chapter',
'complexType',
'struct',
'all',
'',
array(
'title' => array('name'=>'title','type'=>'xsd:string'),
'page' => array('name'=>'page','type'=>'xsd:int')
)
);
|
$server->register(
'getBooks',
array('author'=>'xsd:string'),
array('return'=>'xsd:string'),
$NAMESPACE);
|
In both of the above code segments, where would i put the documentation tag?
(ie: so it would output as <s:documenation>BLAH</s:documentation>