diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 4e756b60..92057846 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -5,18 +5,6 @@ class Kernel extends ConsoleKernel { - /** - * The bootstrap classes for the application. - * - * @return void - */ - protected $bootstrappers = [ - 'Illuminate\Foundation\Bootstrap\LoadEnvironment', - 'Illuminate\Foundation\Bootstrap\LoadConfiguration', - 'Illuminate\Foundation\Bootstrap\RegisterProviders', - 'Illuminate\Foundation\Bootstrap\BootProviders', - ]; - /** * Run the console application. * diff --git a/app/Http/Kernel.php b/app/Http/Kernel.php index 796cda8c..25865bc6 100644 --- a/app/Http/Kernel.php +++ b/app/Http/Kernel.php @@ -5,19 +5,6 @@ class Kernel extends HttpKernel { - /** - * The bootstrap classes for the application. - * - * @return void - */ - protected $bootstrappers = [ - 'Illuminate\Foundation\Bootstrap\LoadEnvironment', - 'Illuminate\Foundation\Bootstrap\HandleExceptions', - 'Illuminate\Foundation\Bootstrap\LoadConfiguration', - 'Illuminate\Foundation\Bootstrap\RegisterProviders', - 'Illuminate\Foundation\Bootstrap\BootProviders', - ]; - /** * The application's HTTP middleware stack. *