@@ -64,9 +64,9 @@ |
||
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 | /** |
@@ -70,7 +70,7 @@ discard block |
||
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 |
||
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( |