Lines Matching refs:paths
106 * @param array|string $paths The PSR-0 root directories
109 public function add($prefix, $paths, $prepend = false)
114 (array) $paths,
120 (array) $paths
129 $this->prefixesPsr0[$first][$prefix] = (array) $paths;
135 (array) $paths,
141 (array) $paths
151 * @param array|string $paths The PSR-4 base directories
156 public function addPsr4($prefix, $paths, $prepend = false)
162 (array) $paths,
168 (array) $paths
178 $this->prefixDirsPsr4[$prefix] = (array) $paths;
182 (array) $paths,
189 (array) $paths
199 * @param array|string $paths The PSR-0 base directories
201 public function set($prefix, $paths)
204 $this->fallbackDirsPsr0 = (array) $paths;
206 $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
215 * @param array|string $paths The PSR-4 base directories
219 public function setPsr4($prefix, $paths)
222 $this->fallbackDirsPsr4 = (array) $paths;
229 $this->prefixDirsPsr4[$prefix] = (array) $paths;
428 // PSR-0 include paths.