You are here

public function ClassLoader::register in Plug 7

Registers this ClassLoader on the SPL autoload stack.

Return value

void

File

lib/doctrine/common/lib/Doctrine/Common/ClassLoader.php, line 154

Class

ClassLoader
A <tt>ClassLoader</tt> is an autoloader for class files that can be installed on the SPL autoload stack. It is a class loader that either loads only classes of a specific namespace or all namespaces and it is suitable for working…

Namespace

Doctrine\Common

Code

public function register() {
  spl_autoload_register(array(
    $this,
    'loadClass',
  ));
}