Lines:
1 to 45 of 45
<?php /* * This file is part of Composer. * * (c) Nils Adermann <naderman@naderman.de> * Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Composer\Autoload; /* class ClassLoader */ /* function ClassLoader::getPrefixes() – */ /* function ClassLoader::getPrefixesPsr4() – */ /* function ClassLoader::getFallbackDirs() – */ /* function ClassLoader::getFallbackDirsPsr4() – */ /* function ClassLoader::getClassMap() – */ /* function ClassLoader::addClassMap() – */ /* function ClassLoader::add() – Registers a set of PSR-0 directories for a given prefix, either appending or prepending to the ones previously set for this prefix. */ /* function ClassLoader::addPsr4() – Registers a set of PSR-4 directories for a given namespace, either appending or prepending to the ones previously set for this namespace. */ /* function ClassLoader::set() – Registers a set of PSR-0 directories for a given prefix, replacing any others previously set for this prefix. */ /* function ClassLoader::setPsr4() – Registers a set of PSR-4 directories for a given namespace, replacing any others previously set for this namespace. */ /* function ClassLoader::setUseIncludePath() – Turns on searching the include path for class files. */ /* function ClassLoader::getUseIncludePath() – Can be used to check if the autoloader uses the include path to check for classes. */ /* function ClassLoader::setClassMapAuthoritative() – Turns off searching the prefix and fallback directories for classes that have not been registered with the class map. */ /* function ClassLoader::isClassMapAuthoritative() – Should class lookup fail if not found in the current class map? */ /* function ClassLoader::setApcuPrefix() – APCu prefix to use to cache found/not-found classes, if the extension is enabled. */ /* function ClassLoader::getApcuPrefix() – The APCu prefix in use, or null if APCu caching is not enabled. */ /* function ClassLoader::register() – Registers this instance as an autoloader. */ /* function ClassLoader::unregister() – Unregisters this instance as an autoloader. */ /* function ClassLoader::loadClass() – Loads the given class or interface. */ /* function ClassLoader::findFile() – Finds the path to the file where the class is defined. */ /* function ClassLoader::findFileWithExtension() – */ /* function includeFile() – Scope isolated include. */