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.

Метод класса: ClassLoader{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$ClassLoader = new ClassLoader();
$ClassLoader->setClassMapAuthoritative( $classMapAuthoritative );
$classMapAuthoritative(true|false) (обязательный)
-

Код ClassLoader::setClassMapAuthoritative() WPSCache 1.12.0

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