Completed
Pull Request — master (#19)
by
unknown
08:16
created
src/Standards/BestIt/AbstractDocSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -451,7 +451,7 @@
 block discarded – undo
451 451
     /**
452 452
      * Returns an array of disallowed tags.
453 453
      *
454
-     * @return array List of disallowed tags
454
+     * @return string[] List of disallowed tags
455 455
      */
456 456
     abstract public function getDisallowedTags();
457 457
 }
Please login to merge, or discard this patch.
src/Standards/BestIt/Helper/DocDescriptionHelper.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
     /**
210 210
      * Returns pointer to the end of the description.
211 211
      *
212
-     * @return int|bool Pointer to the end of the description or false
212
+     * @return integer Pointer to the end of the description or false
213 213
      */
214 214
     private function getCommentDescriptionEndPointer()
215 215
     {
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
     /**
241 241
      * Returns pointer to the start of the long description or false if not found.
242 242
      *
243
-     * @return bool|int Pointer to the start of the description or false
243
+     * @return integer|null Pointer to the start of the description or false
244 244
      */
245 245
     private function getCommentDescriptionStartPointer()
246 246
     {
Please login to merge, or discard this patch.
src/Standards/BestIt/Helper/DocSummaryHelper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
     /**
76 76
      * Returns comment summary token.
77 77
      *
78
-     * @return array Summary token array
78
+     * @return integer Summary token array
79 79
      */
80 80
     public function getCommentSummaryToken()
81 81
     {
Please login to merge, or discard this patch.
src/Standards/BestIt/Helper/DocTagHelper.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -484,7 +484,7 @@  discard block
 block discarded – undo
484 484
     /**
485 485
      * Processes found tags - sorts them as needed and multiplies them how often they occur.
486 486
      *
487
-     * @return array List of sorted and expanded tags
487
+     * @return string[] List of sorted and expanded tags
488 488
      */
489 489
     private function getExpandedSortedTags()
490 490
     {
@@ -496,7 +496,7 @@  discard block
 block discarded – undo
496 496
     /**
497 497
      * Returns sorted comment tag names.
498 498
      *
499
-     * @return array List of current sorted comment tags
499
+     * @return string[] List of current sorted comment tags
500 500
      */
501 501
     private function getSortedTags()
502 502
     {
Please login to merge, or discard this patch.