From ee71e0a86acac37f44a2baf9692a56364c590d35 Mon Sep 17 00:00:00 2001 From: Shift Date: Tue, 3 Jan 2023 08:25:43 +0000 Subject: [PATCH] Shift core files --- bootstrap/app.php | 68 +++++++++++++++++++++++------------------------ 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/bootstrap/app.php b/bootstrap/app.php index 1788a356b..037e17df0 100644 --- a/bootstrap/app.php +++ b/bootstrap/app.php @@ -1,55 +1,55 @@ singleton( - 'Illuminate\Contracts\Http\Kernel', - 'App\Http\Kernel' + Illuminate\Contracts\Http\Kernel::class, + App\Http\Kernel::class ); $app->singleton( - 'Illuminate\Contracts\Console\Kernel', - 'App\Console\Kernel' + Illuminate\Contracts\Console\Kernel::class, + App\Console\Kernel::class ); $app->singleton( - 'Illuminate\Contracts\Debug\ExceptionHandler', - 'App\Exceptions\Handler' + Illuminate\Contracts\Debug\ExceptionHandler::class, + App\Exceptions\Handler::class ); /* - |-------------------------------------------------------------------------- - | 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 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;