Completed
Pull Request — master (#23)
by Pádraic
15:10
created
src/Handler/AddPrefixCommandHandler.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,8 +53,6 @@  discard block
 block discarded – undo
53 53
     /**
54 54
      * Handles the "add-prefix" command.
55 55
      *
56
-     * @param Args $args The console arguments.
57
-     * @param IO   $io   The I/O.
58 56
      *
59 57
      * @return int Returns 0 on success and a positive integer on error.
60 58
      */
@@ -96,6 +94,9 @@  discard block
 block discarded – undo
96 94
         return 0;
97 95
     }
98 96
 
97
+    /**
98
+     * @param string $prefix
99
+     */
99 100
     private function scopeFiles($prefix, BasicFormatter $formatter)
100 101
     {
101 102
         $count = count($this->finder);
Please login to merge, or discard this patch.
src/Formatter/BasicFormatter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 /*
4 4
  * This file is part of the humbug/php-scoper package.
5 5
  *
Please login to merge, or discard this patch.
src/Console/ApplicationConfig.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     {
29 29
         $app->command(
30 30
             'add-prefix prefix path*',
31
-            function ($prefix, $path, OutputInterface $output) {
31
+            function($prefix, $path, OutputInterface $output) {
32 32
                 $formatter = new BasicFormatter($output);
33 33
                 $formatter->outputScopingStart();
34 34
                 $handler = new AddPrefixCommandHandler();
Please login to merge, or discard this patch.