@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | */ |
129 | 129 | public static function joinPath(string ...$path): string |
130 | 130 | { |
131 | - array_walk($path, function (&$value) { |
|
131 | + array_walk($path, function(&$value) { |
|
132 | 132 | $value = str_replace('\\', '/', $value); |
133 | 133 | $value = rtrim($value, '/'); |
134 | 134 | }); |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | */ |
146 | 146 | public static function joinFile(string ...$path): string |
147 | 147 | { |
148 | - array_walk($path, function (&$value, $key) use (&$path) { |
|
148 | + array_walk($path, function(&$value, $key) use (&$path) { |
|
149 | 149 | $value = str_replace(['\\', '/'], [DIRECTORY_SEPARATOR, DIRECTORY_SEPARATOR], $value); |
150 | 150 | $value = rtrim($value, DIRECTORY_SEPARATOR); |
151 | 151 | // unset entry with empty value |
@@ -213,7 +213,7 @@ discard block |
||
213 | 213 | public static function fileGetContents($filename) |
214 | 214 | { |
215 | 215 | set_error_handler( |
216 | - function ($severity, $message, $file, $line) { |
|
216 | + function($severity, $message, $file, $line) { |
|
217 | 217 | throw new \ErrorException($message, 0, $severity, $file, $line, null); |
218 | 218 | } |
219 | 219 | ); |