@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | { |
159 | 159 | $paths = $this->extractData($key, $rawConfigData, []); |
160 | 160 | |
161 | - return array_map(function ($path) use ($file) { |
|
161 | + return array_map(function($path) use ($file) { |
|
162 | 162 | return $this->fixPath($path, $file); |
163 | 163 | }, $paths); |
164 | 164 | } |
@@ -172,7 +172,7 @@ discard block |
||
172 | 172 | { |
173 | 173 | $templates = $this->extractData(self::KEY_TEMPLATES, $rawConfigData, []); |
174 | 174 | |
175 | - return array_map(function ($template) use ($file) { |
|
175 | + return array_map(function($template) use ($file) { |
|
176 | 176 | $template['source'] = $this->fixPath($template['source'], $file); |
177 | 177 | $template['destination'] = $this->makeAbsolutePath($file, $template['destination']); |
178 | 178 |