@@ -73,6 +73,11 @@ |
||
73 | 73 | $this->generator = $generator; |
74 | 74 | } |
75 | 75 | |
76 | + /** |
|
77 | + * @param string $wsdl |
|
78 | + * @param string $portName |
|
79 | + * @param string $serviceName |
|
80 | + */ |
|
76 | 81 | private function getSoapService($wsdl, $portName = null, $serviceName = null) |
77 | 82 | { |
78 | 83 | $generator = $this->generator ?: new PhpMetadataGenerator(); |
@@ -68,6 +68,11 @@ |
||
68 | 68 | } |
69 | 69 | } |
70 | 70 | |
71 | + /** |
|
72 | + * @param string $name |
|
73 | + * @param string $value |
|
74 | + * @param string $namespace |
|
75 | + */ |
|
71 | 76 | private function setAttributeOnNode(\DOMElement $node, $name, $value, $namespace) |
72 | 77 | { |
73 | 78 | if (!($prefix = $node->lookupPrefix($namespace)) && !($prefix = $node->ownerDocument->lookupPrefix($namespace))) { |
@@ -115,6 +115,9 @@ |
||
115 | 115 | return $operation; |
116 | 116 | } |
117 | 117 | |
118 | + /** |
|
119 | + * @param string $direction |
|
120 | + */ |
|
118 | 121 | protected function generateInOut(Operation $operation, OperationMessage $operationMessage, Param $param, $direction, Service $service) |
119 | 122 | { |
120 | 123 | $xmlNs = $operation->getOperation()->getDefinition()->getTargetNamespace(); |