Lines Matching defs:paths
179 * @param string[]|string $paths The PSR-0 root directories
184 public function add($prefix, $paths, $prepend = false)
189 (array) $paths,
195 (array) $paths
204 $this->prefixesPsr0[$first][$prefix] = (array) $paths;
210 (array) $paths,
216 (array) $paths
226 * @param string[]|string $paths The PSR-4 base directories
233 public function addPsr4($prefix, $paths, $prepend = false)
239 (array) $paths,
245 (array) $paths
255 $this->prefixDirsPsr4[$prefix] = (array) $paths;
259 (array) $paths,
266 (array) $paths
276 * @param string[]|string $paths The PSR-0 base directories
280 public function set($prefix, $paths)
283 $this->fallbackDirsPsr0 = (array) $paths;
285 $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
294 * @param string[]|string $paths The PSR-4 base directories
300 public function setPsr4($prefix, $paths)
303 $this->fallbackDirsPsr4 = (array) $paths;
310 $this->prefixDirsPsr4[$prefix] = (array) $paths;
551 // PSR-0 include paths.