public function ClassLoader::set in Auth0 Single Sign On 8.2
Registers a set of PSR-0 directories for a given prefix, replacing any others previously set for this prefix.
Parameters
string $prefix The prefix:
array|string $paths The PSR-0 base directories:
File
- vendor/
composer/ ClassLoader.php, line 201
Class
- ClassLoader
- ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
Namespace
Composer\AutoloadCode
public function set($prefix, $paths) {
if (!$prefix) {
$this->fallbackDirsPsr0 = (array) $paths;
}
else {
$this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
}
}