From 8d5df52eb7173f5803d961e0e9e53d271cb72561 Mon Sep 17 00:00:00 2001 From: QWp6t Date: Fri, 26 Feb 2021 22:20:46 -0800 Subject: [PATCH] fix(bootstrap): use static bootloader to prevent rebooting --- bootstrap/app.php | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/bootstrap/app.php b/bootstrap/app.php index f71f223..d903fde 100644 --- a/bootstrap/app.php +++ b/bootstrap/app.php @@ -11,7 +11,7 @@ | */ -$app = new Roots\Acorn\Bootloader(); +\Roots\bootloader(); /* |-------------------------------------------------------------------------- @@ -47,16 +47,3 @@ collect(['helpers', 'setup', 'filters', 'admin']) */ add_theme_support('sage'); - -/* -|-------------------------------------------------------------------------- -| Return The Application -|-------------------------------------------------------------------------- -| -| This script returns the application instance. The instance is given to -| the calling script so we can separate the building of the instances -| from the actual running of the application and sending responses. -| -*/ - -return $app;