Lines Matching defs:paths
183 * @param string[]|string $paths The PSR-0 root directories
188 public function add($prefix, $paths, $prepend = false)
193 (array) $paths,
199 (array) $paths
208 $this->prefixesPsr0[$first][$prefix] = (array) $paths;
214 (array) $paths,
220 (array) $paths
230 * @param string[]|string $paths The PSR-4 base directories
237 public function addPsr4($prefix, $paths, $prepend = false)
243 (array) $paths,
249 (array) $paths
259 $this->prefixDirsPsr4[$prefix] = (array) $paths;
263 (array) $paths,
270 (array) $paths
280 * @param string[]|string $paths The PSR-0 base directories
284 public function set($prefix, $paths)
287 $this->fallbackDirsPsr0 = (array) $paths;
289 $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
298 * @param string[]|string $paths The PSR-4 base directories
304 public function setPsr4($prefix, $paths)
307 $this->fallbackDirsPsr4 = (array) $paths;
314 $this->prefixDirsPsr4[$prefix] = (array) $paths;
556 // PSR-0 include paths.