Completed
Pull Request — master (#65)
by Pádraic
01:53
created
src/Console/Command/AddPrefixCommand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of the humbug/php-scoper package.
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
         $fileSystem = $this->fileSystem;
174 174
 
175 175
         $paths = array_map(
176
-            function (string $path) use ($cwd, $fileSystem) {
176
+            function(string $path) use ($cwd, $fileSystem) {
177 177
                 if (false === $fileSystem->isAbsolutePath($path)) {
178 178
                     return $cwd.DIRECTORY_SEPARATOR.$path;
179 179
                 }
@@ -292,9 +292,9 @@  discard block
 block discarded – undo
292 292
             }
293 293
 
294 294
             $map = array_map(
295
-                function (array $replacement) use ($cwd, $fileSystem) {
295
+                function(array $replacement) use ($cwd, $fileSystem) {
296 296
                     $replacement['files'] = array_map(
297
-                        function (string $path) use ($cwd, $fileSystem) {
297
+                        function(string $path) use ($cwd, $fileSystem) {
298 298
                             if (false === $fileSystem->isAbsolutePath($path)) {
299 299
                                 return $cwd.DIRECTORY_SEPARATOR.$path;
300 300
                             }
Please login to merge, or discard this patch.