Passed
Push — master ( a82b19...678f11 )
by
unknown
02:54
created
src/Composer/Iterator/SourceFileIteratorFactory.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -82,12 +82,12 @@  discard block
 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
                 )
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
             implode(
201 201
                 '|',
202 202
                 array_map(
203
-                    function (string $pattern): string {
203
+                    function(string $pattern): string {
204 204
                         return preg_quote(
205 205
                             str_replace('\\', '/', $pattern),
206 206
                             '@'
Please login to merge, or discard this patch.