Completed
Push — master ( c1dd30...d92f40 )
by Jan Philipp
11s
created
src/Config/YamlConfigFileLoader.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 
4 4
 namespace Shopware\Psh\Config;
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
     {
151 151
         $paths = $this->extractData(self::KEY_COMMAND_PATHS, $rawConfigData, []);
152 152
 
153
-        return array_map(function ($path) use ($file) {
153
+        return array_map(function($path) use ($file) {
154 154
             return $this->fixPath($path, $file);
155 155
         }, $paths);
156 156
     }
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
     {
165 165
         $templates = $this->extractData(self::KEY_TEMPLATES, $rawConfigData, []);
166 166
 
167
-        return array_map(function ($template) use ($file) {
167
+        return array_map(function($template) use ($file) {
168 168
             $template['source'] = $this->fixPath($template['source'], $file);
169 169
             $template['destination'] = $this->makeAbsolutePath($file, $template['destination']);
170 170
 
Please login to merge, or discard this patch.