@@ -49,7 +49,7 @@ discard block |
||
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 |
||
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, |