lowercase namespace when loading bundle.
This commit is contained in:
parent
a351e91aef
commit
4774c8d91e
|
|
@ -86,7 +86,7 @@ class_alias(static::$aliases[$class], $class);
|
|||
// match the name of their bundle.
|
||||
if (Bundle::exists($namespace) and ! Bundle::started($namespace))
|
||||
{
|
||||
Bundle::start($namespace);
|
||||
Bundle::start(strtolower($namespace));
|
||||
|
||||
static::load($class);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue