@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | */ |
138 | 138 | public static function joinPath(array $strings): string |
139 | 139 | { |
140 | - array_walk($strings, function (&$value) { |
|
140 | + array_walk($strings, function(&$value) { |
|
141 | 141 | $value = str_replace('\\', '/', $value); |
142 | 142 | $value = trim($value, '/'); |
143 | 143 | }); |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | */ |
155 | 155 | public static function joinFile(array $strings): string |
156 | 156 | { |
157 | - array_walk($strings, function (&$value) { |
|
157 | + array_walk($strings, function(&$value) { |
|
158 | 158 | $value = str_replace(['\\', '/'], DIRECTORY_SEPARATOR, $value); |
159 | 159 | $value = trim($value, DIRECTORY_SEPARATOR); |
160 | 160 | }); |