ClassLoader::setClassMapAuthoritative( bool $classMapAuthoritative )

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


Parameters Parameters

$classMapAuthoritative

(bool) (Required)


Top ↑

Return Return

(void)


Top ↑

Source Source

File: libraries/lifterlms-cli/vendor/composer/ClassLoader.php

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

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.