Completed
Push — master ( 7c199b...1d9709 )
by Rémi
02:44
created
src/Loader.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -54,6 +54,9 @@
 block discarded – undo
54 54
         putenv("$key=$value");
55 55
     }
56 56
 
57
+    /**
58
+     * @param string $key
59
+     */
57 60
     public static function getenv($key, $default = null)
58 61
     {
59 62
         switch (true) {
Please login to merge, or discard this patch.
src/Parser.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,6 +30,9 @@  discard block
 block discarded – undo
30 30
         }
31 31
     }
32 32
 
33
+    /**
34
+     * @param integer $scannerMode
35
+     */
33 36
     public function setScannerMode($scannerMode)
34 37
     {
35 38
         $this->scannerMode = $scannerMode;
@@ -40,7 +43,7 @@  discard block
 block discarded – undo
40 43
      *
41 44
      * @param string $file file to parse
42 45
      *
43
-     * @return string Returns the phrase passed in
46
+     * @return Parser Returns the phrase passed in
44 47
      */
45 48
     public function parse($file)
46 49
     {
Please login to merge, or discard this patch.