Loads the given class or interface.
string $class The name of the class:
bool|null True, if loaded
public function loadClass($class) { if ($file = $this ->findFile($class)) { include $file; return true; } }