refactoring loader class.
This commit is contained in:
@@ -47,10 +47,7 @@ class Loader {
|
|||||||
{
|
{
|
||||||
$file = strtolower(str_replace('\\', '/', $class));
|
$file = strtolower(str_replace('\\', '/', $class));
|
||||||
|
|
||||||
if (array_key_exists($class, static::$aliases))
|
if (array_key_exists($class, static::$aliases)) 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);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user