@@ -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; |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | } |
88 | 88 | /** |
89 | 89 | * Returns the type value |
90 | - * @return bool |
|
90 | + * @return string |
|
91 | 91 | */ |
92 | 92 | public function getContainsElements() |
93 | 93 | { |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | * If this attribute contains elements then it's an array |
108 | 108 | * only if its parent, the Struct, is not itself an array, |
109 | 109 | * if the parent is an array, then it is certainly not an array too |
110 | - * @return bool |
|
110 | + * @return string |
|
111 | 111 | */ |
112 | 112 | public function isArray() |
113 | 113 | { |