Lines Matching defs:paths
115 * @param array|string $paths The PSR-0 root directories
118 public function add($prefix, $paths, $prepend = false)
123 (array) $paths,
129 (array) $paths
138 $this->prefixesPsr0[$first][$prefix] = (array) $paths;
144 (array) $paths,
150 (array) $paths
160 * @param array|string $paths The PSR-4 base directories
165 public function addPsr4($prefix, $paths, $prepend = false)
171 (array) $paths,
177 (array) $paths
187 $this->prefixDirsPsr4[$prefix] = (array) $paths;
191 (array) $paths,
198 (array) $paths
208 * @param array|string $paths The PSR-0 base directories
210 public function set($prefix, $paths)
213 $this->fallbackDirsPsr0 = (array) $paths;
215 $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
224 * @param array|string $paths The PSR-4 base directories
228 public function setPsr4($prefix, $paths)
231 $this->fallbackDirsPsr4 = (array) $paths;
238 $this->prefixDirsPsr4[$prefix] = (array) $paths;
462 // PSR-0 include paths.