From 300ab50a84527cedf193247786dcea318ac22c37 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 26 Jan 2012 19:55:46 -0600 Subject: [PATCH] explicitly registering the base_path as a psr-0 directory no longer necessary since auto-loader will detect core classes by namespace. --- laravel/core.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/laravel/core.php b/laravel/core.php index 0b1ed9d9..53defac3 100644 --- a/laravel/core.php +++ b/laravel/core.php @@ -32,13 +32,6 @@ require SYS_PATH.'autoloader'.EXT; */ spl_autoload_register(array('Laravel\\Autoloader', 'load')); -/** - * Register the "BASE_PATH" as a PSR-0 directory. This allows the - * entire Laravel framework to be laoded according to the PSR-0 - * conventions, as the entire core follows the convention. - */ -Autoloader::psr(BASE_PATH); - /** * Register all of the core class aliases. These aliases provide a * convenient way of working with the Laravel core classes without