Gitonomy\Git\Tests\AbstractTest::createTempDir PHP Méthode

createTempDir() public static méthode

Created an empty directory and return path to it.
public static createTempDir ( ) : string
Résultat string a fullpath
    public static function createTempDir()
    {
        $tmpDir = tempnam(sys_get_temp_dir(), 'gitlib_');
        unlink($tmpDir);
        mkdir($tmpDir);
        return $tmpDir;
    }