Ergo\ClassLoader::includePaths PHP Метод

includePaths() публичный Метод

Prepends one or more items to the include path of the class loader and the php include path.
public includePaths ( $path )
    public function includePaths($path)
    {
        $paths = is_array($path) ? $path : array($path);
        $this->_paths = array_merge($paths, $this->_paths);
        return $this;
    }