Completed
Push — more-codesniff ( f563eb )
by Marcus
01:57
created
src/LesserPhp/Color/Converter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -139,7 +139,7 @@
 block discarded – undo
139 139
      * @param int $max
140 140
      * @param int $min
141 141
      *
142
-     * @return mixed
142
+     * @return integer
143 143
      */
144 144
     public function clamp($v, $max = 1, $min = 0)
145 145
     {
Please login to merge, or discard this patch.
src/LesserPhp/Compiler.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -443,7 +443,7 @@  discard block
 block discarded – undo
443 443
 
444 444
     /**
445 445
      * @param $block
446
-     * @param $out
446
+     * @param \stdClass $out
447 447
      *
448 448
      * @throws \LesserPhp\Exception\GeneralException
449 449
      */
@@ -1724,7 +1724,7 @@  discard block
 block discarded – undo
1724 1724
     }
1725 1725
 
1726 1726
     /**
1727
-     * @param      $parent
1727
+     * @param      NodeEnv $parent
1728 1728
      * @param null $block
1729 1729
      *
1730 1730
      * @return \LesserPhp\NodeEnv
Please login to merge, or discard this patch.
src/LesserPhp/Library/Functions.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -703,7 +703,7 @@  discard block
 block discarded – undo
703 703
     /**
704 704
      * @param array $args
705 705
      *
706
-     * @return array
706
+     * @return integer[]
707 707
      */
708 708
     public function fadeout(array $args)
709 709
     {
@@ -716,7 +716,7 @@  discard block
 block discarded – undo
716 716
     /**
717 717
      * @param array $args
718 718
      *
719
-     * @return array
719
+     * @return integer[]
720 720
      */
721 721
     public function fadein(array $args)
722 722
     {
@@ -788,7 +788,7 @@  discard block
 block discarded – undo
788 788
      *
789 789
      * @param array $args
790 790
      *
791
-     * @return array
791
+     * @return integer[]
792 792
      */
793 793
     public function fade(array $args)
794 794
     {
Please login to merge, or discard this patch.
src/LesserPhp/Parser.php 1 patch
Doc Comments   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
      * Parser constructor.
100 100
      *
101 101
      * @param \LesserPhp\Compiler $lessc
102
-     * @param null                $sourceName
102
+     * @param string                $sourceName
103 103
      */
104 104
     public function __construct(Compiler $lessc, $sourceName = null)
105 105
     {
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
     }
124 124
 
125 125
     /**
126
-     * @param $buffer
126
+     * @param string $buffer
127 127
      *
128 128
      * @return mixed
129 129
      * @throws \LesserPhp\Exception\GeneralException
@@ -477,7 +477,7 @@  discard block
 block discarded – undo
477 477
      * recursively parse infix equation with $lhs at precedence $minP
478 478
      *
479 479
      * @param $lhs
480
-     * @param $minP
480
+     * @param integer $minP
481 481
      *
482 482
      * @return array
483 483
      */
@@ -811,10 +811,10 @@  discard block
 block discarded – undo
811 811
     /**
812 812
      * an unbounded string stopped by $end
813 813
      *
814
-     * @param      $end
814
+     * @param      string $end
815 815
      * @param      $out
816 816
      * @param null $nestingOpen
817
-     * @param null $rejectStrs
817
+     * @param string[] $rejectStrs
818 818
      *
819 819
      * @return bool
820 820
      */
@@ -1793,7 +1793,7 @@  discard block
 block discarded – undo
1793 1793
     /**
1794 1794
      * push a block that doesn't multiply tags
1795 1795
      *
1796
-     * @param $type
1796
+     * @param string $type
1797 1797
      *
1798 1798
      * @return \stdClass
1799 1799
      */
@@ -1806,7 +1806,7 @@  discard block
 block discarded – undo
1806 1806
      * append a property to the current block
1807 1807
      *
1808 1808
      * @param      $prop
1809
-     * @param  $pos
1809
+     * @param  integer $pos
1810 1810
      */
1811 1811
     protected function append($prop, $pos = null)
1812 1812
     {
@@ -1917,7 +1917,7 @@  discard block
 block discarded – undo
1917 1917
     }
1918 1918
 
1919 1919
     /**
1920
-     * @param $s
1920
+     * @param integer $s
1921 1921
      *
1922 1922
      * @return bool
1923 1923
      */
Please login to merge, or discard this patch.