@@ -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; |
@@ -60,7 +60,7 @@ |
||
| 60 | 60 | */ |
| 61 | 61 | public static function isAnonymous($xsdType) |
| 62 | 62 | { |
| 63 | - return (bool) preg_match(self::ANONYMOUS_TYPE, $xsdType); |
|
| 63 | + return (bool)preg_match(self::ANONYMOUS_TYPE, $xsdType); |
|
| 64 | 64 | } |
| 65 | 65 | /** |
| 66 | 66 | * @param string $xsdType |