|
@@ 6547-6549 (lines=3) @@
|
| 6544 |
|
|
| 6545 |
|
if ($style == 'document') { |
| 6546 |
|
$elements = array(); |
| 6547 |
|
foreach ($in as $n => $t) { |
| 6548 |
|
$elements[$n] = array('name' => $n, 'type' => $t, 'form' => 'unqualified'); |
| 6549 |
|
} |
| 6550 |
|
$this->addComplexType($name . 'RequestType', 'complexType', 'struct', 'all', '', $elements); |
| 6551 |
|
$this->addElement(array('name' => $name, 'type' => $name . 'RequestType')); |
| 6552 |
|
$in = array('parameters' => 'tns:' . $name . '^'); |
|
@@ 6555-6557 (lines=3) @@
|
| 6552 |
|
$in = array('parameters' => 'tns:' . $name . '^'); |
| 6553 |
|
|
| 6554 |
|
$elements = array(); |
| 6555 |
|
foreach ($out as $n => $t) { |
| 6556 |
|
$elements[$n] = array('name' => $n, 'type' => $t, 'form' => 'unqualified'); |
| 6557 |
|
} |
| 6558 |
|
$this->addComplexType($name . 'ResponseType', 'complexType', 'struct', 'all', '', $elements); |
| 6559 |
|
$this->addElement(array('name' => $name . 'Response', 'type' => $name . 'ResponseType', 'form' => 'qualified')); |
| 6560 |
|
$out = array('parameters' => 'tns:' . $name . 'Response' . '^'); |