From 5a8f7114ba5b9ed2c6f6cfb6a1b269a41bda0eff Mon Sep 17 00:00:00 2001 From: Phan An Date: Sun, 10 Jan 2021 23:18:21 +0100 Subject: [PATCH] chore: remove custom Application file --- bootstrap/app.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bootstrap/app.php b/bootstrap/app.php index 873df5d9..20a3a522 100644 --- a/bootstrap/app.php +++ b/bootstrap/app.php @@ -11,7 +11,9 @@ | */ -$app = new App\Application(dirname(__DIR__)); +use Illuminate\Foundation\Application; + +$app = new Application(dirname(__DIR__)); /* |--------------------------------------------------------------------------