Commit 300ab50a by Taylor Otwell

explicitly registering the base_path as a psr-0 directory no longer necessary…

explicitly registering the base_path as a psr-0 directory no longer necessary since auto-loader will detect core classes by namespace.
parent 9d1905ee
...@@ -33,13 +33,6 @@ require SYS_PATH.'autoloader'.EXT; ...@@ -33,13 +33,6 @@ require SYS_PATH.'autoloader'.EXT;
spl_autoload_register(array('Laravel\\Autoloader', 'load')); 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 * Register all of the core class aliases. These aliases provide a
* convenient way of working with the Laravel core classes without * convenient way of working with the Laravel core classes without
* having to worry about the namespacing. The developer is also * having to worry about the namespacing. The developer is also
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment