Start on snip history manipulation

This commit is contained in:
Tim
2023-04-05 08:26:36 +02:00
parent ccab49dd3c
commit e461a7ad35
4 changed files with 59 additions and 15 deletions

13
src/Git/CustomGit.php Normal file
View File

@ -0,0 +1,13 @@
<?php
namespace App\Git;
use CzProject\GitPhp\Git;
class CustomGit extends Git
{
public function open($directory)
{
return new CustomGitRepository($directory, $this->runner);
}
}