Test Failed
Push — master ( 1fb108...e771fd )
by Ashoka
04:12 queued 38s
created
src/Composer/Iterator/SourceFileIteratorFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -82,12 +82,12 @@
 block discarded – undo
82 82
     {
83 83
         return new ArrayIterator(
84 84
             array_map(
85
-                function (string $path) : SplFileInfo {
85
+                function(string $path) : SplFileInfo {
86 86
                     return new SplFileInfo($path);
87 87
                 },
88 88
                 array_filter(
89 89
                     $paths,
90
-                    function (string $path) : bool {
90
+                    function(string $path) : bool {
91 91
                         return is_readable($path);
92 92
                     }
93 93
                 )
Please login to merge, or discard this patch.
bin/autoload.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
     [
10 10
         __DIR__ . '/../vendor/autoload.php',
11 11
     ],
12
-    function (?string $carry, string $file): ?string {
12
+    function(?string $carry, string $file): ?string {
13 13
         return file_exists($file)
14 14
             ? $file
15 15
             : $carry;
Please login to merge, or discard this patch.