remove composers from ioc container. remove comment bloat from autoloader.

This commit is contained in:
Taylor Otwell
2011-11-09 22:10:37 -06:00
parent 0fd88b67f2
commit 56daba42c5
3 changed files with 1 additions and 11 deletions

View File

@@ -64,10 +64,6 @@ class Autoloader {
// If the namespace has been registered as a PSR-0 compliant library, we will
// load the library according to the PSR-0 naming standards, which state that
// namespaces and underscores indicate the directory hierarchy of the class.
//
// The PSR-0 standard is exactly like the typical Laravel standard, the only
// difference being that Laravel files are all lowercase, while PSR-0 states
// that the file name should match the class name.
if (isset(static::$libraries[$library]))
{
return str_replace('_', '/', $file).EXT;