Completed
Pull Request — master (#23)
by Pádraic
02:42 queued 47s
created
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.
src/PhpScoperApplicationConfig.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     {
28 28
         $app->command(
29 29
             'add-prefix prefix path*',
30
-            function ($prefix, $path, OutputInterface $output) {
30
+            function($prefix, $path, OutputInterface $output) {
31 31
                 $handler = new AddPrefixCommandHandler();
32 32
                 $handler->handle($prefix, $path, $output);
33 33
             }
Please login to merge, or discard this patch.