Test Failed
Pull Request — master (#4)
by Ashoka
06:12
created
src/Installer/PipelinesInstaller.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -64,9 +64,9 @@
 block discarded – undo
64 64
         $this->processBuilder = $processBuilder ?: new ProcessBuilder();
65 65
         $this->destination    = $destination ?: getcwd();
66 66
 
67
-        $pattern  !== null && $this->pattern  = $pattern;
67
+        $pattern !== null && $this->pattern  = $pattern;
68 68
         $filename !== null && $this->filename = $filename;
69
-        $types    !== null && $this->types    = $types;
69
+        $types !== null && $this->types    = $types;
70 70
     }
71 71
 
72 72
     /**
Please login to merge, or discard this patch.
src/Installer/ArchiveExcludeInstaller.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
             : [];
71 71
 
72 72
         $excluded = array_map(
73
-            function (string $exclude): string {
73
+            function(string $exclude): string {
74 74
                 return substr($exclude, 0, 1) !== '/'
75 75
                     ? '/' . $exclude
76 76
                     : $exclude;
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
         $files = array_merge(
82 82
             $this->defaults,
83 83
             array_map(
84
-                function (FileMappingInterface $mapping): string {
84
+                function(FileMappingInterface $mapping): string {
85 85
                     return '/' . $mapping->getRelativeDestination();
86 86
                 },
87 87
                 iterator_to_array(
Please login to merge, or discard this patch.