You are here

function xautoload_ClassLoader_NoCache::unregister in X Autoload 7.3

Unregister from the spl autoload stack.

Overrides xautoload_ClassLoader_Interface::unregister

File

lib/ClassLoader/NoCache.php, line 54

Class

xautoload_ClassLoader_NoCache
Behaves mostly like the Symfony ClassLoader classes.

Code

function unregister() {
  spl_autoload_unregister(array(
    $this,
    'loadClass',
  ));
}