Composer\Autoload

ClassLoader::setClassMapAuthoritative()publicWPSCache 1.0

Turns off searching the prefix and fallback directories for classes that have not been registered with the class map.

Method of the class: ClassLoader{}

No Hooks.

Return

null. Nothing (null).

Usage

$ClassLoader = new ClassLoader();
$ClassLoader->setClassMapAuthoritative( $classMapAuthoritative );
$classMapAuthoritative(true|false) (required)
-

ClassLoader::setClassMapAuthoritative() code WPSCache 1.11.0

public function setClassMapAuthoritative($classMapAuthoritative)
{
    $this->classMapAuthoritative = $classMapAuthoritative;
}