Browse Source

refactoring loader class.

Taylor Otwell 13 years ago
parent
commit
20186dca03
1 changed files with 1 additions and 4 deletions
  1. 1 4
      system/loader.php

+ 1 - 4
system/loader.php

@@ -47,10 +47,7 @@ class Loader {
 	{
 		$file = strtolower(str_replace('\\', '/', $class));
 
-		if (array_key_exists($class, static::$aliases))
-		{
-			return class_alias(static::$aliases[$class], $class);
-		}
+		if (array_key_exists($class, static::$aliases)) return class_alias(static::$aliases[$class], $class);
 
 		(static::load_from_registered($file)) or static::load_from_module($file);
 	}