Programming Language PHP

Namespace GitElephant

Class Repository

Total Examples 2

2 code examples of PHP GitElephant\Repository extracted from open source projects

Was this example useful?
0
                                                    public static function clone(string $url, string $to)
    {
        Repository::createFromRemote($url, $to, self::getBinary());
    }
                                            
Was this example useful?
0
                                                    public static function repo($path)
    {
        return Repository::open($path, self::getBinary());
    }
                                            
Repository's Other Methods
Repository's Other Methods