ClassLoader::unregister()
Unregisters this instance as an autoloader.
Contents
Return Return
(void)
Source Source
File: libraries/lifterlms-cli/vendor/composer/ClassLoader.php
410 411 412 413 414 415 416 417 | public function unregister() { spl_autoload_unregister( array ( $this , 'loadClass' )); if (null !== $this ->vendorDir) { unset(self:: $registeredLoaders [ $this ->vendorDir]); } } |
Expand full source code Collapse full source code View on GitHub