@@ -70,6 +70,10 @@ discard block |
||
70 | 70 | return $this; |
71 | 71 | } |
72 | 72 | |
73 | + /** |
|
74 | + * @param string $key |
|
75 | + * @param string $value |
|
76 | + */ |
|
73 | 77 | public function setDynamicVariable($key, $value): ConfigBuilder |
74 | 78 | { |
75 | 79 | $this->currentDynamicVariables[$key] = $value; |
@@ -86,6 +90,10 @@ discard block |
||
86 | 90 | return $this; |
87 | 91 | } |
88 | 92 | |
93 | + /** |
|
94 | + * @param string $key |
|
95 | + * @param string $value |
|
96 | + */ |
|
89 | 97 | public function setConstVariable($key, $value): ConfigBuilder |
90 | 98 | { |
91 | 99 | $this->currentConstants[$key] = $value; |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | { |
144 | 144 | $paths = $this->extractData(self::KEY_COMMAND_PATHS, $rawConfigData, []); |
145 | 145 | |
146 | - return array_map(function ($path) use ($file) { |
|
146 | + return array_map(function($path) use ($file) { |
|
147 | 147 | return $this->fixPath($this->applicationRootDirectory, $path, $file); |
148 | 148 | }, $paths); |
149 | 149 | } |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | { |
158 | 158 | $templates = $this->extractData(self::KEY_TEMPLATES, $rawConfigData, []); |
159 | 159 | |
160 | - return array_map(function ($template) use ($file) { |
|
160 | + return array_map(function($template) use ($file) { |
|
161 | 161 | $template['source'] = $this->fixPath($this->applicationRootDirectory, $template['source'], $file); |
162 | 162 | $template['destination'] = $this->makeAbsolutePath($file, $template['destination']); |
163 | 163 |
@@ -48,19 +48,19 @@ |
||
48 | 48 | return $globResult; |
49 | 49 | } |
50 | 50 | |
51 | - $overrideFiles = array_filter($globResult, function (string $file) { |
|
51 | + $overrideFiles = array_filter($globResult, function(string $file) { |
|
52 | 52 | $extension = pathinfo($file, PATHINFO_EXTENSION); |
53 | 53 | |
54 | 54 | return $extension === 'override'; |
55 | 55 | }); |
56 | 56 | |
57 | - $distFiles = array_filter($globResult, function (string $file) { |
|
57 | + $distFiles = array_filter($globResult, function(string $file) { |
|
58 | 58 | $extension = pathinfo($file, PATHINFO_EXTENSION); |
59 | 59 | |
60 | 60 | return $extension === 'dist'; |
61 | 61 | }); |
62 | 62 | |
63 | - $configFiles = array_filter($globResult, function (string $file) { |
|
63 | + $configFiles = array_filter($globResult, function(string $file) { |
|
64 | 64 | $extension = pathinfo($file, PATHINFO_EXTENSION); |
65 | 65 | |
66 | 66 | return $extension !== 'override' && $extension !== 'dist'; |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | { |
157 | 157 | $pathNodes = $this->extractNodes(self::NODE_PATH, $pshConfigNode); |
158 | 158 | |
159 | - return array_map(function (DOMElement $path) use ($file) { |
|
159 | + return array_map(function(DOMElement $path) use ($file) { |
|
160 | 160 | return $this->fixPath($this->applicationRootDirectory, $path->nodeValue, $file); |
161 | 161 | }, $pathNodes); |
162 | 162 | } |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | { |
171 | 171 | $templates = $this->extractNodes(self::NODE_TEMPLATE, $pshConfigNodes); |
172 | 172 | |
173 | - return array_map(function (DOMElement $template) use ($file) { |
|
173 | + return array_map(function(DOMElement $template) use ($file) { |
|
174 | 174 | return [ |
175 | 175 | 'source' => $this->fixPath( |
176 | 176 | $this->applicationRootDirectory, |