@@ -16,13 +16,13 @@ |
||
16 | 16 | |
17 | 17 | use ErrorException; |
18 | 18 | |
19 | -($GLOBALS['_BOX_BOOTSTRAP'] = function (): void { |
|
19 | +($GLOBALS['_BOX_BOOTSTRAP'] = function(): void { |
|
20 | 20 | \KevinGH\Box\register_aliases(); |
21 | 21 | })(); |
22 | 22 | |
23 | 23 | // Convert errors to exceptions |
24 | 24 | set_error_handler( |
25 | - function (int $code, string $message, string $file = '', int $line = -1): void { |
|
25 | + function(int $code, string $message, string $file = '', int $line = -1): void { |
|
26 | 26 | if (error_reporting() & $code) { |
27 | 27 | throw new ErrorException($message, 0, $code, (string) $file, $line); |
28 | 28 | } |
@@ -427,7 +427,7 @@ |
||
427 | 427 | return $count; |
428 | 428 | } |
429 | 429 | |
430 | - $countFile = function (array $count, PharFileInfo $file): array { |
|
430 | + $countFile = function(array $count, PharFileInfo $file): array { |
|
431 | 431 | if (false === $file->isCompressed()) { |
432 | 432 | ++$count['None']; |
433 | 433 |