Completed
Pull Request — master (#87)
by Robbie
01:45
created
code/DataObjectAnnotator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -164,8 +164,8 @@
 block discarded – undo
164 164
     }
165 165
 
166 166
     /**
167
-     * @param $fileContent
168
-     * @param $className
167
+     * @param string $fileContent
168
+     * @param string $className
169 169
      *
170 170
      * Return the complete File content with the newly generated DocBlocks
171 171
      *
Please login to merge, or discard this patch.
code/Generators/AbstractTagGenerator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
     }
170 170
 
171 171
     /**
172
-     * @param $key
172
+     * @param string $key
173 173
      * @return mixed
174 174
      */
175 175
     protected function getClassConfig($key)
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
     }
179 179
 
180 180
     /**
181
-     * @param $type
181
+     * @param string $type
182 182
      * @param $tagString
183 183
      * @return Tag
184 184
      */
Please login to merge, or discard this patch.
code/Generators/DocBlockGenerator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
      * This will make sure that removed ORM properties and Extenions will not remain in the docblock,
122 122
      * while providing the option to manually add docblocks like @author etc.
123 123
      *
124
-     * @param $docBlock
124
+     * @param string $docBlock
125 125
      * @return string
126 126
      */
127 127
     public function removeExistingSupportedTags($docBlock)
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
      * Removes the unnecessary STARTTAG and ENDTAG
140 140
      * If they are left behind somehow
141 141
      *
142
-     * @param $docBlock
142
+     * @param string $docBlock
143 143
      *
144 144
      * @return mixed
145 145
      */
Please login to merge, or discard this patch.