You are here

public function DebugClassLoader::unregister in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/class-loader/DebugClassLoader.php \Symfony\Component\ClassLoader\DebugClassLoader::unregister()

Unregisters this instance as an autoloader.

File

vendor/symfony/class-loader/DebugClassLoader.php, line 78

Class

DebugClassLoader
Autoloader checking if the class is really defined in the file found.

Namespace

Symfony\Component\ClassLoader

Code

public function unregister() {
  spl_autoload_unregister(array(
    $this,
    'loadClass',
  ));
}