Completed
Push — feature/issue-44 ( cdce8d...269bb1 )
by Mikaël
23:35
created
src/DomHandler/Wsdl/Tag/TagHeader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/Command/GeneratePackageCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Model/StructValue.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,6 +68,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
      */
Please login to merge, or discard this patch.