Completed
Pull Request — master (#23)
by Pádraic
03:39 queued 01:37
created
src/Scoper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
     }
34 34
 
35 35
     /**
36
-     * @param $content
36
+     * @param string $content
37 37
      * @param $prefix
38 38
      *
39 39
      * @return string
Please login to merge, or discard this patch.
src/Handler/AddPrefixCommandHandler.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,8 +54,6 @@  discard block
 block discarded – undo
54 54
     /**
55 55
      * Handles the "add-prefix" command.
56 56
      *
57
-     * @param Args $args The console arguments.
58
-     * @param IO   $io   The I/O.
59 57
      *
60 58
      * @return int Returns 0 on success and a positive integer on error.
61 59
      */
@@ -86,6 +84,9 @@  discard block
 block discarded – undo
86 84
         return 0;
87 85
     }
88 86
 
87
+    /**
88
+     * @param string $prefix
89
+     */
89 90
     private function scopeFile($path, $prefix, OutputInterface $output)
90 91
     {
91 92
         $fileContent = file_get_contents($path);
Please login to merge, or discard this patch.