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

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

Exports the classloader path into the PHP system include path
public export ( )
    public function export()
    {
        $systemPaths = explode(PATH_SEPARATOR, get_include_path());
        set_include_path(implode(PATH_SEPARATOR, array_merge($systemPaths, $this->_paths)));
        return $this;
    }