public function DebugClassLoader::unregister in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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\ClassLoaderCode
public function unregister() {
spl_autoload_unregister(array(
$this,
'loadClass',
));
}