1
0
Fork 0

removed the `return false` as we only need a positive return information

pull/167/head
Pierre Minnieur 2011-12-21 13:30:25 +01:00
parent 4242a05a0e
commit 3b1843827a
1 changed files with 1 additions and 3 deletions

View File

@ -83,7 +83,7 @@ class ClassLoader
* Loads the given class or interface.
*
* @param string $class The name of the class
* @return Boolean True, if loaded
* @return Boolean|null True, if loaded
*/
public function loadClass($class)
{
@ -91,8 +91,6 @@ class ClassLoader
require $file;
return true;
}
return false;
}
/**