@@ -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 | { |
@@ -188,7 +188,7 @@ |
||
188 | 188 | */ |
189 | 189 | private function formatArrayForConsole($array) |
190 | 190 | { |
191 | - array_walk($array, function (&$value, $index) { |
|
191 | + array_walk($array, function(&$value, $index) { |
|
192 | 192 | $value = sprintf("%s: %s", $index, !is_array($value) ? $value : implode(', ', $value)); |
193 | 193 | }); |
194 | 194 | return $array; |
@@ -68,6 +68,7 @@ discard block |
||
68 | 68 | } |
69 | 69 | } |
70 | 70 | /** |
71 | + * @param boolean $keepMultipleUnderscores |
|
71 | 72 | * @return string |
72 | 73 | */ |
73 | 74 | public function getNameWithSeparatedWords($keepMultipleUnderscores) |
@@ -110,7 +111,7 @@ discard block |
||
110 | 111 | * Returns the index which has to be added at the end of natural constant name defined with the value cleaned |
111 | 112 | * Allows to avoid multiple constant name to be indentic |
112 | 113 | * @param string $structName the struct name |
113 | - * @param string|int|float $value the value |
|
114 | + * @param string $value the value |
|
114 | 115 | * @param int $index the position of the value |
115 | 116 | * @return int |
116 | 117 | */ |