You are here

public function ClassLoader::register in Module Builder 7.2

Registers this instance as an autoloader.

Parameters

bool $prepend Whether to prepend the autoloader or not:

File

vendor/composer/ClassLoader.php, line 279

Class

ClassLoader
ClassLoader implements a PSR-0 class loader

Namespace

Composer\Autoload

Code

public function register($prepend = false) {
  spl_autoload_register(array(
    $this,
    'loadClass',
  ), true, $prepend);
}