@@ -26,13 +26,13 @@ |
||
| 26 | 26 | use function sys_get_temp_dir; |
| 27 | 27 | use function unlink; |
| 28 | 28 | |
| 29 | -($GLOBALS['_BOX_BOOTSTRAP'] = function (): void { |
|
| 29 | +($GLOBALS['_BOX_BOOTSTRAP'] = function(): void { |
|
| 30 | 30 | \KevinGH\Box\register_aliases(); |
| 31 | 31 | })(); |
| 32 | 32 | |
| 33 | 33 | // Convert errors to exceptions |
| 34 | 34 | set_error_handler( |
| 35 | - function ($code, $message, $file, $line): void { |
|
| 35 | + function($code, $message, $file, $line): void { |
|
| 36 | 36 | if (error_reporting() & $code) { |
| 37 | 37 | throw new ErrorException($message, 0, $code, $file, $line); |
| 38 | 38 | } |