You are here

public function ClassLoader::unregister in Mobile Number 7

Unregisters this instance as an autoloader.

File

include/ClassLoader.php, line 323

Class

ClassLoader
ClassLoader implements a PSR-0, PSR-4 and classmap class loader.

Namespace

mobile_number

Code

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