Test Setup Failed
Push — master ( 3c7c52...aaab1b )
by
unknown
02:14 queued 36s
created
src/UnixFileMappingReader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     private function getMappings(): Iterator
50 50
     {
51 51
         if ($this->mappings === null) {
52
-            $filePaths = [];
52
+            $filePaths = [ ];
53 53
 
54 54
             foreach ($this->mappingFilePaths as $mappingFilePath) {
55 55
                 $newFilePaths = iterator_to_array(new SplFileObject($mappingFilePath, 'r'));
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
             $this->mappings = new ArrayIterator(
60 60
                 array_map(
61
-                    function (string $mapping) : FileMappingInterface {
61
+                    function(string $mapping) : FileMappingInterface {
62 62
                         return new UnixFileMapping(
63 63
                             $this->sourceDirectory,
64 64
                             $this->targetDirectory,
Please login to merge, or discard this patch.