Composer\Autoload
ClassLoader::set()
Registers a set of PSR-0 directories for a given prefix, replacing any others previously set for this prefix.
Method of the class: ClassLoader{}
No Hooks.
Return
null
. Nothing (null).
Usage
$ClassLoader = new ClassLoader(); $ClassLoader->set( $prefix, $paths );
- $prefix(string) (required)
- The prefix
- $paths(list
|string) (required) - The PSR-0 base directories
ClassLoader::set() ClassLoader::set code WPSCache 1.12.4
public function set($prefix, $paths) { if (!$prefix) { $this->fallbackDirsPsr0 = (array) $paths; } else { $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths; } }