public function ClassLoader::setClassMapAuthoritative in TMGMT Translator Smartling 8.4
Same name and namespace in other branches
- 8.2 vendor/composer/ClassLoader.php \Composer\Autoload\ClassLoader::setClassMapAuthoritative()
- 8.3 vendor/composer/ClassLoader.php \Composer\Autoload\ClassLoader::setClassMapAuthoritative()
Turns off searching the prefix and fallback directories for classes that have not been registered with the class map.
Parameters
bool $classMapAuthoritative:
File
- vendor/
composer/ ClassLoader.php, line 260
Class
- ClassLoader
- ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
Namespace
Composer\AutoloadCode
public function setClassMapAuthoritative($classMapAuthoritative) {
$this->classMapAuthoritative = $classMapAuthoritative;
}