Completed
Push — master ( cf7247...7c3177 )
by Lars
04:07
created
src/kint/decorators/Kint_Decorators_Plain.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -186,7 +186,7 @@
 block discarded – undo
186 186
   }
187 187
 
188 188
   /**
189
-   * @param $text
189
+   * @param string $text
190 190
    *
191 191
    * @return string
192 192
    */
Please login to merge, or discard this patch.
src/kint/inc/KintParser.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -607,7 +607,7 @@
 block discarded – undo
607 607
    * @param mixed       $value
608 608
    * @param null|string $encoding
609 609
    *
610
-   * @return mixed|string
610
+   * @return string|null
611 611
    */
612 612
   public static function escape(&$value, $encoding = null)
613 613
   {
Please login to merge, or discard this patch.
src/kint/Kint.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -455,7 +455,7 @@  discard block
 block discarded – undo
455 455
    * @param int    $lineNumber the line to display
456 456
    * @param int    $padding    surrounding lines to show besides the main one
457 457
    *
458
-   * @return bool|string
458
+   * @return false|string
459 459
    */
460 460
   private static function _showSource($file, $lineNumber, $padding = 7)
461 461
   {
@@ -518,7 +518,7 @@  discard block
 block discarded – undo
518 518
    *
519 519
    * @param $step
520 520
    *
521
-   * @return array
521
+   * @return boolean
522 522
    */
523 523
   private static function _stepIsInternal($step)
524 524
   {
@@ -568,7 +568,7 @@  discard block
 block discarded – undo
568 568
    *
569 569
    * @param mixed $data
570 570
    *
571
-   * @return void|string
571
+   * @return string
572 572
    */
573 573
   public static function dump($data = null)
574 574
   {
@@ -780,7 +780,7 @@  discard block
 block discarded – undo
780 780
    * @param string $file
781 781
    * @param int    $line
782 782
    *
783
-   * @return mixed
783
+   * @return string
784 784
    */
785 785
   public static function getIdeLink($file, $line)
786 786
   {
@@ -838,7 +838,7 @@  discard block
 block discarded – undo
838 838
    *
839 839
    * @param array $trace [OPTIONAL] you can pass your own trace, otherwise, `debug_backtrace` will be called
840 840
    *
841
-   * @return mixed
841
+   * @return string
842 842
    */
843 843
   public static function trace($trace = null)
844 844
   {
Please login to merge, or discard this patch.
src/kint/parsers/custom/Kint_Parsers_FsPath.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
   /**
13 13
    * @param mixed $variable
14 14
    *
15
-   * @return bool
15
+   * @return false|null
16 16
    */
17 17
   protected function _parse(&$variable)
18 18
   {
Please login to merge, or discard this patch.