Open Journal Systems
3.3.0
|
Public Member Functions | |
add ($prefix, $paths, $prepend=false) | |
add ($prefix, $paths, $prepend=false) | |
add ($prefix, $paths, $prepend=false) | |
add ($prefix, $paths, $prepend=false) | |
addClassMap (array $classMap) | |
addClassMap (array $classMap) | |
addClassMap (array $classMap) | |
addClassMap (array $classMap) | |
addPsr4 ($prefix, $paths, $prepend=false) | |
addPsr4 ($prefix, $paths, $prepend=false) | |
addPsr4 ($prefix, $paths, $prepend=false) | |
addPsr4 ($prefix, $paths, $prepend=false) | |
findFile ($class) | |
findFile ($class) | |
findFile ($class) | |
findFile ($class) | |
getApcuPrefix () | |
getApcuPrefix () | |
getApcuPrefix () | |
getApcuPrefix () | |
getClassMap () | |
getClassMap () | |
getClassMap () | |
getClassMap () | |
getFallbackDirs () | |
getFallbackDirs () | |
getFallbackDirs () | |
getFallbackDirs () | |
getFallbackDirsPsr4 () | |
getFallbackDirsPsr4 () | |
getFallbackDirsPsr4 () | |
getFallbackDirsPsr4 () | |
getPrefixes () | |
getPrefixes () | |
getPrefixes () | |
getPrefixes () | |
getPrefixesPsr4 () | |
getPrefixesPsr4 () | |
getPrefixesPsr4 () | |
getPrefixesPsr4 () | |
getUseIncludePath () | |
getUseIncludePath () | |
getUseIncludePath () | |
getUseIncludePath () | |
isClassMapAuthoritative () | |
isClassMapAuthoritative () | |
isClassMapAuthoritative () | |
isClassMapAuthoritative () | |
loadClass ($class) | |
loadClass ($class) | |
loadClass ($class) | |
loadClass ($class) | |
register ($prepend=false) | |
register ($prepend=false) | |
register ($prepend=false) | |
register ($prepend=false) | |
set ($prefix, $paths) | |
set ($prefix, $paths) | |
set ($prefix, $paths) | |
set ($prefix, $paths) | |
setApcuPrefix ($apcuPrefix) | |
setApcuPrefix ($apcuPrefix) | |
setApcuPrefix ($apcuPrefix) | |
setApcuPrefix ($apcuPrefix) | |
setClassMapAuthoritative ($classMapAuthoritative) | |
setClassMapAuthoritative ($classMapAuthoritative) | |
setClassMapAuthoritative ($classMapAuthoritative) | |
setClassMapAuthoritative ($classMapAuthoritative) | |
setPsr4 ($prefix, $paths) | |
setPsr4 ($prefix, $paths) | |
setPsr4 ($prefix, $paths) | |
setPsr4 ($prefix, $paths) | |
setUseIncludePath ($useIncludePath) | |
setUseIncludePath ($useIncludePath) | |
setUseIncludePath ($useIncludePath) | |
setUseIncludePath ($useIncludePath) | |
unregister () | |
unregister () | |
unregister () | |
unregister () | |
ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
$loader = new \Composer\Autoload\ClassLoader(); // register classes with namespaces $loader->add('Symfony\Component', __DIR__.'/component'); $loader->add('Symfony', __DIR__.'/framework'); // activate the autoloader $loader->register(); // to enable searching the include path (eg. for PEAR packages) $loader->setUseIncludePath(true);
In this example, if you try to use a class in the Symfony\Component namespace or one of its children (Symfony\Component\Console for instance), the autoloader will first look for the class under the component/ directory, and it will then fallback to the framework/ directory if not found before giving up.
This class is loosely based on the Symfony UniversalClassLoader.
Definition at line 43 of file generic/citationStyleLanguage/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::add | ( | $prefix, | |
$paths, | |||
$prepend = false |
|||
) |
Registers a set of PSR-0 directories for a given prefix, either appending or prepending to the ones previously set for this prefix.
string | $prefix | The prefix |
array | string | $paths | The PSR-0 root directories |
bool | $prepend | Whether to prepend the directories |
Definition at line 109 of file generic/citationStyleLanguage/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::add | ( | $prefix, | |
$paths, | |||
$prepend = false |
|||
) |
Registers a set of PSR-0 directories for a given prefix, either appending or prepending to the ones previously set for this prefix.
string | $prefix | The prefix |
array | string | $paths | The PSR-0 root directories |
bool | $prepend | Whether to prepend the directories |
Definition at line 109 of file paymethod/paypal/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::add | ( | $prefix, | |
$paths, | |||
$prepend = false |
|||
) |
Registers a set of PSR-0 directories for a given prefix, either appending or prepending to the ones previously set for this prefix.
string | $prefix | The prefix |
array | string | $paths | The PSR-0 root directories |
bool | $prepend | Whether to prepend the directories |
Definition at line 109 of file paymethod/paypal/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::add | ( | $prefix, | |
$paths, | |||
$prepend = false |
|||
) |
Registers a set of PSR-0 directories for a given prefix, either appending or prepending to the ones previously set for this prefix.
string | $prefix | The prefix |
array | string | $paths | The PSR-0 root directories |
bool | $prepend | Whether to prepend the directories |
Definition at line 109 of file generic/pln/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::addClassMap | ( | array | $classMap | ) |
array | $classMap | Class to filename map |
Definition at line 92 of file paymethod/paypal/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::addClassMap | ( | array | $classMap | ) |
array | $classMap | Class to filename map |
Definition at line 92 of file paymethod/paypal/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::addClassMap | ( | array | $classMap | ) |
array | $classMap | Class to filename map |
Definition at line 92 of file generic/citationStyleLanguage/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::addClassMap | ( | array | $classMap | ) |
array | $classMap | Class to filename map |
Definition at line 92 of file generic/pln/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::addPsr4 | ( | $prefix, | |
$paths, | |||
$prepend = false |
|||
) |
Registers a set of PSR-4 directories for a given namespace, either appending or prepending to the ones previously set for this namespace.
string | $prefix | The prefix/namespace, with trailing '\' |
array | string | $paths | The PSR-4 base directories |
bool | $prepend | Whether to prepend the directories |
Definition at line 156 of file paymethod/paypal/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::addPsr4 | ( | $prefix, | |
$paths, | |||
$prepend = false |
|||
) |
Registers a set of PSR-4 directories for a given namespace, either appending or prepending to the ones previously set for this namespace.
string | $prefix | The prefix/namespace, with trailing '\' |
array | string | $paths | The PSR-4 base directories |
bool | $prepend | Whether to prepend the directories |
Definition at line 156 of file generic/citationStyleLanguage/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::addPsr4 | ( | $prefix, | |
$paths, | |||
$prepend = false |
|||
) |
Registers a set of PSR-4 directories for a given namespace, either appending or prepending to the ones previously set for this namespace.
string | $prefix | The prefix/namespace, with trailing '\' |
array | string | $paths | The PSR-4 base directories |
bool | $prepend | Whether to prepend the directories |
Definition at line 156 of file paymethod/paypal/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::addPsr4 | ( | $prefix, | |
$paths, | |||
$prepend = false |
|||
) |
Registers a set of PSR-4 directories for a given namespace, either appending or prepending to the ones previously set for this namespace.
string | $prefix | The prefix/namespace, with trailing '\' |
array | string | $paths | The PSR-4 base directories |
bool | $prepend | Whether to prepend the directories |
Definition at line 156 of file generic/pln/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::findFile | ( | $class | ) |
Finds the path to the file where the class is defined.
string | $class | The name of the class |
Definition at line 335 of file generic/pln/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::findFile | ( | $class | ) |
Finds the path to the file where the class is defined.
string | $class | The name of the class |
Definition at line 335 of file paymethod/paypal/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::findFile | ( | $class | ) |
Finds the path to the file where the class is defined.
string | $class | The name of the class |
Definition at line 335 of file generic/citationStyleLanguage/lib/vendor/composer/ClassLoader.php.
Referenced by Composer\Autoload\ClassLoader\loadClass().
Composer\Autoload\ClassLoader::findFile | ( | $class | ) |
Finds the path to the file where the class is defined.
string | $class | The name of the class |
Definition at line 335 of file paymethod/paypal/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getApcuPrefix | ( | ) |
The APCu prefix in use, or null if APCu caching is not enabled.
Definition at line 290 of file generic/citationStyleLanguage/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getApcuPrefix | ( | ) |
The APCu prefix in use, or null if APCu caching is not enabled.
Definition at line 290 of file generic/pln/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getApcuPrefix | ( | ) |
The APCu prefix in use, or null if APCu caching is not enabled.
Definition at line 290 of file paymethod/paypal/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getApcuPrefix | ( | ) |
The APCu prefix in use, or null if APCu caching is not enabled.
Definition at line 290 of file paymethod/paypal/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getClassMap | ( | ) |
Definition at line 84 of file paymethod/paypal/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getClassMap | ( | ) |
Definition at line 84 of file paymethod/paypal/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getClassMap | ( | ) |
Definition at line 84 of file generic/pln/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getClassMap | ( | ) |
Definition at line 84 of file generic/citationStyleLanguage/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getFallbackDirs | ( | ) |
Definition at line 74 of file generic/citationStyleLanguage/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getFallbackDirs | ( | ) |
Definition at line 74 of file paymethod/paypal/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getFallbackDirs | ( | ) |
Definition at line 74 of file generic/pln/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getFallbackDirs | ( | ) |
Definition at line 74 of file paymethod/paypal/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getFallbackDirsPsr4 | ( | ) |
Definition at line 79 of file paymethod/paypal/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getFallbackDirsPsr4 | ( | ) |
Definition at line 79 of file generic/citationStyleLanguage/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getFallbackDirsPsr4 | ( | ) |
Definition at line 79 of file paymethod/paypal/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getFallbackDirsPsr4 | ( | ) |
Definition at line 79 of file generic/pln/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getPrefixes | ( | ) |
Definition at line 60 of file paymethod/paypal/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getPrefixes | ( | ) |
Definition at line 60 of file generic/pln/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getPrefixes | ( | ) |
Definition at line 60 of file generic/citationStyleLanguage/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getPrefixes | ( | ) |
Definition at line 60 of file paymethod/paypal/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getPrefixesPsr4 | ( | ) |
Definition at line 69 of file generic/citationStyleLanguage/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getPrefixesPsr4 | ( | ) |
Definition at line 69 of file paymethod/paypal/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getPrefixesPsr4 | ( | ) |
Definition at line 69 of file generic/pln/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getPrefixesPsr4 | ( | ) |
Definition at line 69 of file paymethod/paypal/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getUseIncludePath | ( | ) |
Can be used to check if the autoloader uses the include path to check for classes.
Definition at line 249 of file generic/pln/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getUseIncludePath | ( | ) |
Can be used to check if the autoloader uses the include path to check for classes.
Definition at line 249 of file paymethod/paypal/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getUseIncludePath | ( | ) |
Can be used to check if the autoloader uses the include path to check for classes.
Definition at line 249 of file generic/citationStyleLanguage/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::getUseIncludePath | ( | ) |
Can be used to check if the autoloader uses the include path to check for classes.
Definition at line 249 of file paymethod/paypal/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::isClassMapAuthoritative | ( | ) |
Should class lookup fail if not found in the current class map?
Definition at line 270 of file generic/pln/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::isClassMapAuthoritative | ( | ) |
Should class lookup fail if not found in the current class map?
Definition at line 270 of file paymethod/paypal/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::isClassMapAuthoritative | ( | ) |
Should class lookup fail if not found in the current class map?
Definition at line 270 of file paymethod/paypal/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::isClassMapAuthoritative | ( | ) |
Should class lookup fail if not found in the current class map?
Definition at line 270 of file generic/citationStyleLanguage/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::loadClass | ( | $class | ) |
Loads the given class or interface.
string | $class | The name of the class |
Definition at line 319 of file generic/citationStyleLanguage/lib/vendor/composer/ClassLoader.php.
References Composer\Autoload\ClassLoader\findFile(), and Composer\Autoload\includeFile().
Composer\Autoload\ClassLoader::loadClass | ( | $class | ) |
Loads the given class or interface.
string | $class | The name of the class |
Definition at line 319 of file generic/pln/vendor/composer/ClassLoader.php.
References Composer\Autoload\ClassLoader\findFile(), and Composer\Autoload\includeFile().
Composer\Autoload\ClassLoader::loadClass | ( | $class | ) |
Loads the given class or interface.
string | $class | The name of the class |
Definition at line 319 of file paymethod/paypal/vendor/composer/ClassLoader.php.
References Composer\Autoload\ClassLoader\findFile(), and Composer\Autoload\includeFile().
Composer\Autoload\ClassLoader::loadClass | ( | $class | ) |
Loads the given class or interface.
string | $class | The name of the class |
Definition at line 319 of file paymethod/paypal/lib/vendor/composer/ClassLoader.php.
References Composer\Autoload\ClassLoader\findFile(), and Composer\Autoload\includeFile().
Composer\Autoload\ClassLoader::register | ( | $prepend = false | ) |
Registers this instance as an autoloader.
bool | $prepend | Whether to prepend the autoloader or not |
Definition at line 300 of file generic/citationStyleLanguage/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::register | ( | $prepend = false | ) |
Registers this instance as an autoloader.
bool | $prepend | Whether to prepend the autoloader or not |
Definition at line 300 of file paymethod/paypal/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::register | ( | $prepend = false | ) |
Registers this instance as an autoloader.
bool | $prepend | Whether to prepend the autoloader or not |
Definition at line 300 of file generic/pln/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::register | ( | $prepend = false | ) |
Registers this instance as an autoloader.
bool | $prepend | Whether to prepend the autoloader or not |
Definition at line 300 of file paymethod/paypal/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::set | ( | $prefix, | |
$paths | |||
) |
Registers a set of PSR-0 directories for a given prefix, replacing any others previously set for this prefix.
string | $prefix | The prefix |
array | string | $paths | The PSR-0 base directories |
Definition at line 201 of file generic/citationStyleLanguage/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::set | ( | $prefix, | |
$paths | |||
) |
Registers a set of PSR-0 directories for a given prefix, replacing any others previously set for this prefix.
string | $prefix | The prefix |
array | string | $paths | The PSR-0 base directories |
Definition at line 201 of file paymethod/paypal/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::set | ( | $prefix, | |
$paths | |||
) |
Registers a set of PSR-0 directories for a given prefix, replacing any others previously set for this prefix.
string | $prefix | The prefix |
array | string | $paths | The PSR-0 base directories |
Definition at line 201 of file paymethod/paypal/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::set | ( | $prefix, | |
$paths | |||
) |
Registers a set of PSR-0 directories for a given prefix, replacing any others previously set for this prefix.
string | $prefix | The prefix |
array | string | $paths | The PSR-0 base directories |
Definition at line 201 of file generic/pln/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::setApcuPrefix | ( | $apcuPrefix | ) |
APCu prefix to use to cache found/not-found classes, if the extension is enabled.
string | null | $apcuPrefix |
Definition at line 280 of file generic/pln/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::setApcuPrefix | ( | $apcuPrefix | ) |
APCu prefix to use to cache found/not-found classes, if the extension is enabled.
string | null | $apcuPrefix |
Definition at line 280 of file paymethod/paypal/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::setApcuPrefix | ( | $apcuPrefix | ) |
APCu prefix to use to cache found/not-found classes, if the extension is enabled.
string | null | $apcuPrefix |
Definition at line 280 of file generic/citationStyleLanguage/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::setApcuPrefix | ( | $apcuPrefix | ) |
APCu prefix to use to cache found/not-found classes, if the extension is enabled.
string | null | $apcuPrefix |
Definition at line 280 of file paymethod/paypal/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::setClassMapAuthoritative | ( | $classMapAuthoritative | ) |
Turns off searching the prefix and fallback directories for classes that have not been registered with the class map.
bool | $classMapAuthoritative |
Definition at line 260 of file generic/citationStyleLanguage/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::setClassMapAuthoritative | ( | $classMapAuthoritative | ) |
Turns off searching the prefix and fallback directories for classes that have not been registered with the class map.
bool | $classMapAuthoritative |
Definition at line 260 of file paymethod/paypal/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::setClassMapAuthoritative | ( | $classMapAuthoritative | ) |
Turns off searching the prefix and fallback directories for classes that have not been registered with the class map.
bool | $classMapAuthoritative |
Definition at line 260 of file generic/pln/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::setClassMapAuthoritative | ( | $classMapAuthoritative | ) |
Turns off searching the prefix and fallback directories for classes that have not been registered with the class map.
bool | $classMapAuthoritative |
Definition at line 260 of file paymethod/paypal/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::setPsr4 | ( | $prefix, | |
$paths | |||
) |
Registers a set of PSR-4 directories for a given namespace, replacing any others previously set for this namespace.
string | $prefix | The prefix/namespace, with trailing '\' |
array | string | $paths | The PSR-4 base directories |
Definition at line 219 of file paymethod/paypal/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::setPsr4 | ( | $prefix, | |
$paths | |||
) |
Registers a set of PSR-4 directories for a given namespace, replacing any others previously set for this namespace.
string | $prefix | The prefix/namespace, with trailing '\' |
array | string | $paths | The PSR-4 base directories |
Definition at line 219 of file generic/pln/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::setPsr4 | ( | $prefix, | |
$paths | |||
) |
Registers a set of PSR-4 directories for a given namespace, replacing any others previously set for this namespace.
string | $prefix | The prefix/namespace, with trailing '\' |
array | string | $paths | The PSR-4 base directories |
Definition at line 219 of file paymethod/paypal/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::setPsr4 | ( | $prefix, | |
$paths | |||
) |
Registers a set of PSR-4 directories for a given namespace, replacing any others previously set for this namespace.
string | $prefix | The prefix/namespace, with trailing '\' |
array | string | $paths | The PSR-4 base directories |
Definition at line 219 of file generic/citationStyleLanguage/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::setUseIncludePath | ( | $useIncludePath | ) |
Turns on searching the include path for class files.
bool | $useIncludePath |
Definition at line 238 of file generic/pln/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::setUseIncludePath | ( | $useIncludePath | ) |
Turns on searching the include path for class files.
bool | $useIncludePath |
Definition at line 238 of file paymethod/paypal/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::setUseIncludePath | ( | $useIncludePath | ) |
Turns on searching the include path for class files.
bool | $useIncludePath |
Definition at line 238 of file paymethod/paypal/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::setUseIncludePath | ( | $useIncludePath | ) |
Turns on searching the include path for class files.
bool | $useIncludePath |
Definition at line 238 of file generic/citationStyleLanguage/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::unregister | ( | ) |
Unregisters this instance as an autoloader.
Definition at line 308 of file generic/citationStyleLanguage/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::unregister | ( | ) |
Unregisters this instance as an autoloader.
Definition at line 308 of file paymethod/paypal/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::unregister | ( | ) |
Unregisters this instance as an autoloader.
Definition at line 308 of file paymethod/paypal/lib/vendor/composer/ClassLoader.php.
Composer\Autoload\ClassLoader::unregister | ( | ) |
Unregisters this instance as an autoloader.
Definition at line 308 of file generic/pln/vendor/composer/ClassLoader.php.