ClassLoader::unregister()

Unregisters this instance as an autoloader.


Return Return

(void)


Top ↑

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]);
    }
}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.