From bcc539ee62052e4562b94a592cf5fc980016e4d0 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 20 Oct 2014 11:29:33 -0500 Subject: [PATCH] Move bootstraps to base classes. --- app/Console/Kernel.php | 12 ------------ app/Http/Kernel.php | 13 ------------- 2 files changed, 25 deletions(-) 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. *