@@ -1,4 +1,4 @@ discard block |
||
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 |
||
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 |
||
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 |