Completed
Pull Request — master (#14)
by
unknown
08:12
created
Lib/Items/ClassManager.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
 
158 158
     /**
159 159
      * @param ArrayCollection $methods
160
-     * @return InterfaceManager
160
+     * @return ClassManager
161 161
      */
162 162
     public function setMethods(ArrayCollection $methods)
163 163
     {
@@ -229,6 +229,7 @@  discard block
 block discarded – undo
229 229
 
230 230
     /**
231 231
      * @param string
232
+     * @param string $comment
232 233
      * @return ClassManager
233 234
      */
234 235
     public function setComment($comment)
@@ -396,7 +397,7 @@  discard block
 block discarded – undo
396 397
     /**
397 398
      * Return set of tags used in template
398 399
      *
399
-     * @return array
400
+     * @return string[]
400 401
      */
401 402
     public function getTemplateTags()
402 403
     {
Please login to merge, or discard this patch.
Lib/Renderer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -459,7 +459,7 @@
 block discarded – undo
459 459
     }
460 460
 
461 461
     /**
462
-     * @param mixed $item
462
+     * @param RenderableInterface $item
463 463
      * @return UnrecognizedItemToRenderException
464 464
      */
465 465
     protected function getExceptionUnrecognizedItem($item)
Please login to merge, or discard this patch.
Lib/StructureGenerator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
      * Generate methods for interface
195 195
      *
196 196
      * @param InterfaceManager $interface
197
-     * @return ArrayCollection
197
+     * @return InterfaceManager
198 198
      */
199 199
     protected function generateAndFillInterfaceMethods(InterfaceManager $interface)
200 200
     {
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
     }
300 300
 
301 301
     /**
302
-     * @param mixed $classConfig
302
+     * @param null|ClassConfig $classConfig
303 303
      * @return ClassConfig
304 304
      */
305 305
     private function getDefaultClassConfigIfNeed($classConfig)
Please login to merge, or discard this patch.
Tests/Lib/StructureResolverTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1151,7 +1151,7 @@
 block discarded – undo
1151 1151
     }
1152 1152
 
1153 1153
     /**
1154
-     * @param mixed $itemOrDirectory
1154
+     * @param string $itemOrDirectory
1155 1155
      * @return string
1156 1156
      * @throws Exception
1157 1157
      */
Please login to merge, or discard this patch.