Ergo\ClassLoader::includePaths PHP Méthode

includePaths() public méthode

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;
    }