| Línea 223... |
Línea 223... |
| 223 |
* @param \SimpleXMLElement $bindingoperation The binding operation node.
|
223 |
* @param \SimpleXMLElement $bindingoperation The binding operation node.
|
| 224 |
* @param array $params The function's input/output parameters.
|
224 |
* @param array $params The function's input/output parameters.
|
| 225 |
* @param bool $isoutput Flag to indicate if the nodes to be generated are for input or for output.
|
225 |
* @param bool $isoutput Flag to indicate if the nodes to be generated are for input or for output.
|
| 226 |
*/
|
226 |
*/
|
| 227 |
private function process_params($functionname, \SimpleXMLElement $porttypeoperation, \SimpleXMLElement $bindingoperation,
|
227 |
private function process_params($functionname, \SimpleXMLElement $porttypeoperation, \SimpleXMLElement $bindingoperation,
|
| 228 |
array $params = null, $isoutput = false) {
|
228 |
?array $params = null, $isoutput = false) {
|
| 229 |
// Do nothing if parameter array is empty.
|
229 |
// Do nothing if parameter array is empty.
|
| 230 |
if (empty($params)) {
|
230 |
if (empty($params)) {
|
| 231 |
return;
|
231 |
return;
|
| 232 |
}
|
232 |
}
|