Completed
Pull Request — master (#41)
by Innocent
01:33
created
src/Checks/CheckViewFilesExistence.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -23,6 +23,9 @@
 block discarded – undo
23 23
         }
24 24
     }
25 25
 
26
+    /**
27
+     * @param integer $i
28
+     */
26 29
     private function isEnvMake($tokens, $i)
27 30
     {
28 31
         $methods = [
Please login to merge, or discard this patch.
src/ErrorPrinter.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -39,6 +39,10 @@  discard block
 block discarded – undo
39 39
             ->link($linkPath, $linkLineNum));
40 40
     }
41 41
 
42
+    /**
43
+     * @param string $errorIt
44
+     * @param string $errorTxt
45
+     */
42 46
     public function route($path, $errorIt, $errorTxt, $linkPath = null, $linkLineNum = 0)
43 47
     {
44 48
         array_push($this->counts['route'], (new PendingError('route'))
@@ -119,6 +123,9 @@  discard block
 block discarded – undo
119 123
         $this->printer->writeln($path.$msg.str_repeat(' ', $len).'|  ');
120 124
     }
121 125
 
126
+    /**
127
+     * @param string $msg
128
+     */
122 129
     public function printHeader($msg)
123 130
     {
124 131
         $this->print('');
Please login to merge, or discard this patch.