-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed obsolete code and moved classes.
- Loading branch information
1 parent
47efa49
commit d5be94c
Showing
18 changed files
with
84 additions
and
474 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace DrevOps\GitArtifact\Git; | ||
|
||
use CzProject\GitPhp\Git; | ||
|
||
/** | ||
* Artifact git class. | ||
*/ | ||
class ArtifactGit extends Git { | ||
|
||
/** | ||
* Open directory. | ||
* | ||
* @throws \CzProject\GitPhp\GitException | ||
*/ | ||
public function open($directory): ArtifactGitRepository { | ||
return new ArtifactGitRepository($directory, $this->runner); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.