Completed
Pull Request — master (#10)
by Michael
02:14
created
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 int[]
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 int[]
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 int[]
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   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1802,7 +1802,7 @@
 block discarded – undo
1802 1802
     /**
1803 1803
      * pop something off the stack
1804 1804
      *
1805
-     * @return mixed
1805
+     * @return integer|null
1806 1806
      */
1807 1807
     protected function pop()
1808 1808
     {
Please login to merge, or discard this patch.
src/LesserPhp/Compiler.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
 
212 212
     /**
213 213
      * @param array $importPath
214
-     * @param       $parentBlock
214
+     * @param       Block $parentBlock
215 215
      * @param       $out
216 216
      *
217 217
      * @return array|false
@@ -857,7 +857,7 @@  discard block
 block discarded – undo
857 857
     /**
858 858
      * attempt to find blocks matched by path and args
859 859
      *
860
-     * @param       $searchIn
860
+     * @param       Block $searchIn
861 861
      * @param array $path
862 862
      * @param       $orderedArgs
863 863
      * @param       $keywordArgs
@@ -1667,7 +1667,7 @@  discard block
 block discarded – undo
1667 1667
     }
1668 1668
 
1669 1669
     /**
1670
-     * @param      $type
1670
+     * @param      null|string $type
1671 1671
      * @param null $selectors
1672 1672
      *
1673 1673
      * @return \stdClass
@@ -2219,7 +2219,7 @@  discard block
 block discarded – undo
2219 2219
      *
2220 2220
      * @param bool $true (optional) Default, allow CSS.
2221 2221
      *
2222
-     * @return void
2222
+     * @return boolean|null
2223 2223
      *
2224 2224
      * @access public 
2225 2225
      *
Please login to merge, or discard this patch.