Passed
Pull Request — master (#176)
by Théo
02:47
created
src/bootstrap.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,13 +26,13 @@
 block discarded – undo
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
         }
Please login to merge, or discard this patch.