public function ClassLoader::loadClass in Auth0 Single Sign On 8.2
Loads the given class or interface.
Parameters
string $class The name of the class:
Return value
bool|null True if loaded, null otherwise
File
- vendor/
composer/ ClassLoader.php, line 319  
Class
- ClassLoader
 - ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
 
Namespace
Composer\AutoloadCode
public function loadClass($class) {
  if ($file = $this
    ->findFile($class)) {
    includeFile($file);
    return true;
  }
}