Composer\Autoload
ClassLoader::unregister() public WC 1.0
Unregisters this instance as an autoloader.
{} It's a method of the class: ClassLoader{}
No Hooks.
Return
Null. Nothing.
Usage
$ClassLoader = new ClassLoader(); $ClassLoader->unregister();
Code of ClassLoader::unregister() ClassLoader::unregister WC 5.0.0
public function unregister()
{
spl_autoload_unregister(array($this, 'loadClass'));
}