Completed
Pull Request — master (#84)
by Nick
02:14
created
src/Config/YamlConfigFileLoader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.