@@ -12,7 +12,7 @@ |
||
12 | 12 | const OPTIONAL_HEADER = 'optional'; |
13 | 13 | const ATTRIBUTE_REQUIRED = 'wsdl:required'; |
14 | 14 | /** |
15 | - * @return TagInput|null |
|
15 | + * @return \WsdlToPhp\PackageGenerator\DomHandler\AbstractNodeHandler|null |
|
16 | 16 | */ |
17 | 17 | public function getParentInput() |
18 | 18 | { |
@@ -8,7 +8,7 @@ |
||
8 | 8 | class Operation extends AbstractOperation |
9 | 9 | { |
10 | 10 | /** |
11 | - * @return Operation |
|
11 | + * @return PhpMethod |
|
12 | 12 | */ |
13 | 13 | public function getMainMethod() |
14 | 14 | { |
@@ -189,8 +189,8 @@ discard block |
||
189 | 189 | } |
190 | 190 | /** |
191 | 191 | * Returns the value of the first meta value assigned to the name |
192 | - * @param array $names the meta names to check |
|
193 | - * @param mixed $fallback the fallback value if anyone is set |
|
192 | + * @param string[] $names the meta names to check |
|
193 | + * @param boolean $fallback the fallback value if anyone is set |
|
194 | 194 | * @return mixed the meta information value |
195 | 195 | */ |
196 | 196 | public function getMetaValueFirstSet(array $names, $fallback = null) |
@@ -425,8 +425,8 @@ discard block |
||
425 | 425 | * Returns a usable method for a original method |
426 | 426 | * @uses PhpReservedKeywords::instance() |
427 | 427 | * @uses PhpReservedKeywords::is() |
428 | - * @param string $keyword the keyword |
|
429 | 428 | * @param string $context the context |
429 | + * @param string $methodName |
|
430 | 430 | * @return string |
431 | 431 | */ |
432 | 432 | public function replaceReservedMethod($methodName, $context = null) |
@@ -109,6 +109,7 @@ discard block |
||
109 | 109 | /** |
110 | 110 | * @throws \InvalidArgumentException |
111 | 111 | * @param string options's file to parse |
112 | + * @param string $filename |
|
112 | 113 | * @return GeneratorOptions |
113 | 114 | */ |
114 | 115 | public static function instance($filename = null) |
@@ -581,8 +582,8 @@ discard block |
||
581 | 582 | } |
582 | 583 | /** |
583 | 584 | * turns my.key.path to array('my' => array('key' => array('path' => $value))) |
584 | - * @param $path $string |
|
585 | - * @param mixed $value |
|
585 | + * @param string $string |
|
586 | + * @param string $value |
|
586 | 587 | * @param array $array |
587 | 588 | */ |
588 | 589 | protected static function dotNotationToArray($string, $value, array &$array) |