Composer\Autoload
ClassLoader::unregister()
Unregisters this instance as an autoloader.
Method of the class: ClassLoader{}
No Hooks.
Return
null
. Nothing (null).
Usage
$ClassLoader = new ClassLoader(); $ClassLoader->unregister();
ClassLoader::unregister() ClassLoader::unregister code WPSCache 1.12.4
public function unregister() { spl_autoload_unregister(array($this, 'loadClass')); if (null !== $this->vendorDir) { unset(self::$registeredLoaders[$this->vendorDir]); } }