Completed
Push — master ( e5b3ec...079626 )
by Níckolas Daniel
05:34
created
Domain/Model/FileProcessing/JigsawBuiltOutputFilesRepository.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,15 +26,15 @@
 block discarded – undo
26 26
         /** @var Collection|array $paths */
27 27
         $paths = $this->jigsaw->getOutputPaths();
28 28
 
29
-        $paths = array_map(function (string $path) {
29
+        $paths = array_map(function(string $path) {
30 30
             return $this->jigsaw->getDestinationPath() . $path . '/index.html';
31 31
         }, is_array($paths) ? $paths : $paths->toArray());
32 32
 
33
-        $paths = array_filter($paths, function (string $path) {
33
+        $paths = array_filter($paths, function(string $path) {
34 34
             return $this->filesystem->exists($path);
35 35
         });
36 36
 
37
-        return new OutputFileCollection(array_map(function (string $path) {
37
+        return new OutputFileCollection(array_map(function(string $path) {
38 38
             return new OutputFile($path, $this->filesystem->get($path));
39 39
         }, $paths));
40 40
     }
Please login to merge, or discard this patch.