@@ -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; |
@@ -39,7 +39,7 @@ |
||
| 39 | 39 | } |
| 40 | 40 | /** |
| 41 | 41 | * @param string $name |
| 42 | - * @return AttributeHandler|null |
|
| 42 | + * @return string|boolean |
|
| 43 | 43 | */ |
| 44 | 44 | public function getAttribute($name) |
| 45 | 45 | { |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | if (!is_numeric($maxOccurs)) { |
| 116 | 116 | return AbstractAttributeHandler::DEFAULT_OCCURENCE_VALUE; |
| 117 | 117 | } |
| 118 | - return (int) $maxOccurs; |
|
| 118 | + return (int)$maxOccurs; |
|
| 119 | 119 | } |
| 120 | 120 | /** |
| 121 | 121 | * Info at {@link https://www.w3.org/TR/xmlschema-0/#OccurrenceConstraints} |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | if (!is_numeric($minOccurs)) { |
| 128 | 128 | return AbstractAttributeHandler::DEFAULT_OCCURENCE_VALUE; |
| 129 | 129 | } |
| 130 | - return (int) $minOccurs; |
|
| 130 | + return (int)$minOccurs; |
|
| 131 | 131 | } |
| 132 | 132 | /** |
| 133 | 133 | * Info at {@link https://www.w3.org/TR/xmlschema-0/#OccurrenceConstraints} |
@@ -143,7 +143,7 @@ discard block |
||
| 143 | 143 | */ |
| 144 | 144 | public function canOccurOnlyOnce() |
| 145 | 145 | { |
| 146 | - return ($this->getMinOccurs() === 1) || ($this->getMaxOccurs() === 1); |
|
| 146 | + return ($this->getMinOccurs() === 1) || ($this->getMaxOccurs() === 1); |
|
| 147 | 147 | } |
| 148 | 148 | /** |
| 149 | 149 | * Info at {@link https://www.w3.org/TR/xmlschema-0/#OccurrenceConstraints} |
@@ -104,7 +104,6 @@ |
||
| 104 | 104 | /** |
| 105 | 105 | * @param AttributeHandler $tagAttribute |
| 106 | 106 | * @param AbstractModel $model |
| 107 | - * @param StructAttribute $attribute |
|
| 108 | 107 | */ |
| 109 | 108 | protected function parseTagAttributeType(AttributeHandler $tagAttribute, AbstractModel $model, StructAttribute $structAttribute = null) |
| 110 | 109 | { |
@@ -96,7 +96,7 @@ |
||
| 96 | 96 | /** |
| 97 | 97 | * Sets the type value |
| 98 | 98 | * @param bool $containsElements |
| 99 | - * @return string |
|
| 99 | + * @return StructAttribute |
|
| 100 | 100 | */ |
| 101 | 101 | public function setContainsElements($containsElements) |
| 102 | 102 | { |