Browse Source

Move bootstraps to base classes.

Taylor Otwell 10 years ago
parent
commit
bcc539ee62
2 changed files with 0 additions and 25 deletions
  1. 0 12
      app/Console/Kernel.php
  2. 0 13
      app/Http/Kernel.php

+ 0 - 12
app/Console/Kernel.php

@@ -5,18 +5,6 @@ use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
 
 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.
 	 *

+ 0 - 13
app/Http/Kernel.php

@@ -5,19 +5,6 @@ use Illuminate\Foundation\Http\Kernel as HttpKernel;
 
 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.
 	 *