You appear to be a bot. Output may be restricted
Description
Registers a set of PSR-4 directories for a given namespace, replacing any others previously set for this namespace.
Usage
$void = ClassLoader::setPsr4( $prefix, $paths );
Parameters
- $prefix
- ( string ) required – The prefix/namespace, with trailing '\\'
- $paths
- ( string[]|string ) required – The PSR-4 base directories
Returns
void
Source
File name: jetpack/vendor/composer/ClassLoader.php
Lines:
1 to 13 of 13
public function setPsr4($prefix, $paths) { if (!$prefix) { $this->fallbackDirsPsr4 = (array) $paths; } else { $length = strlen($prefix); if ('\\' !== $prefix[$length - 1]) { throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); } $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; $this->prefixDirsPsr4[$prefix] = (array) $paths; } }