Commit aa1e20bc authored by Taylor Otwell's avatar Taylor Otwell

fixed bug in auto-loader that caused module classes to not load correctly.

parent 512342c0
...@@ -52,7 +52,7 @@ class Loader { ...@@ -52,7 +52,7 @@ class Loader {
return class_alias(static::$aliases[$class], $class); return class_alias(static::$aliases[$class], $class);
} }
( ! static::load_from_registered($file)) or static::load_from_module($file); (static::load_from_registered($file)) or static::load_from_module($file);
} }
/** /**
......
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