MIOLO20
|
Campos de Dados | |
$StringA ='String A' | |
$StringB =null | |
$Integer =123 | |
$Boolean =true | |
This is how to define a complex type f.e. - the class ComplexTypeDemo doesn't need to exists, but it would make it easier for you to return that complex type from a method
@pw_element string $StringA A string with a value @pw_element string $StringB A string with a NULL value @pw_set nillable=false The next element can't be NULL @pw_element int $Integer An integer @pw_set nillable=false The next element can't be NULL @pw_element boolean $Boolean A boolean @pw_complex ComplexTypeDemo The complex type name definition
Definido na linha 22 do ficheiro class.complextypedemo.php.
$Boolean =true |
Definido na linha 26 do ficheiro class.complextypedemo.php.
$Integer =123 |
Definido na linha 25 do ficheiro class.complextypedemo.php.
$StringA ='String A' |
Definido na linha 23 do ficheiro class.complextypedemo.php.
$StringB =null |
Definido na linha 24 do ficheiro class.complextypedemo.php.