@@ -44,10 +44,10 @@ discard block |
||
| 44 | 44 | */ |
| 45 | 45 | public static function joinPath(string ...$path): string |
| 46 | 46 | { |
| 47 | - $path = array_filter($path, function ($path) { |
|
| 47 | + $path = array_filter($path, function($path) { |
|
| 48 | 48 | return !empty($path) && !is_null($path); |
| 49 | 49 | }); |
| 50 | - array_walk($path, function (&$value, $key) { |
|
| 50 | + array_walk($path, function(&$value, $key) { |
|
| 51 | 51 | $value = str_replace('\\', '/', $value); |
| 52 | 52 | $value = rtrim($value, '/'); |
| 53 | 53 | $value = $key == 0 ? $value : ltrim($value, '/'); |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | */ |
| 66 | 66 | public static function joinFile(string ...$path): string |
| 67 | 67 | { |
| 68 | - array_walk($path, function (&$value, $key) use (&$path) { |
|
| 68 | + array_walk($path, function(&$value, $key) use (&$path) { |
|
| 69 | 69 | $value = str_replace(['\\', '/'], [DIRECTORY_SEPARATOR, DIRECTORY_SEPARATOR], $value); |
| 70 | 70 | $value = rtrim($value, DIRECTORY_SEPARATOR); |
| 71 | 71 | $value = $key == 0 ? $value : ltrim($value, DIRECTORY_SEPARATOR); |