Browse Source

Remove class loader from aliases.

Taylor Otwell 9 years ago
parent
commit
c58286aa25
2 changed files with 0 additions and 14 deletions
  1. 0 1
      app/config/app.php
  2. 0 13
      bootstrap/autoload.php

+ 0 - 1
app/config/app.php

@@ -166,7 +166,6 @@ return array(
 		'Auth'            => 'Illuminate\Support\Facades\Auth',
 		'Blade'           => 'Illuminate\Support\Facades\Blade',
 		'Cache'           => 'Illuminate\Support\Facades\Cache',
-		'ClassLoader'     => 'Illuminate\Support\ClassLoader',
 		'Config'          => 'Illuminate\Support\Facades\Config',
 		'Controller'      => 'Illuminate\Routing\Controller',
 		'Cookie'          => 'Illuminate\Support\Facades\Cookie',

+ 0 - 13
bootstrap/autoload.php

@@ -32,19 +32,6 @@ if (file_exists($compiled = __DIR__.'/compiled.php'))
 	require $compiled;
 }
 
-/*
-|--------------------------------------------------------------------------
-| Register The Laravel Auto Loader
-|--------------------------------------------------------------------------
-|
-| We register an auto-loader "behind" the Composer loader that can load
-| model classes on the fly, even if the autoload files have not been
-| regenerated for the application. We'll add it to the stack here.
-|
-*/
-
-Illuminate\Support\ClassLoader::register();
-
 /*
 |--------------------------------------------------------------------------
 | Register The Workbench Loaders