public function ClassLoader::setClassMapAuthoritative in Mobile Number 7
Turns off searching the prefix and fallback directories for classes that have not been registered with the class map.
Parameters
bool $classMapAuthoritative: The class.
File
- include/
ClassLoader.php, line 293
Class
- ClassLoader
- ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
Namespace
mobile_numberCode
public function setClassMapAuthoritative($classMapAuthoritative) {
$this->classMapAuthoritative = $classMapAuthoritative;
}