New feature: Branch name for software products

This commit is contained in:
Steffen Lange 2020-04-01 17:25:40 +02:00
parent dd3be30e56
commit 3d037ec2b3
5 changed files with 13 additions and 6 deletions

View file

@ -32,6 +32,9 @@ class PatchObject {
function getBranch() : string {
return $this->branch;
}
function setBranch(string $branch) {
$this->branch = $branch;
}
function getVersion() : string {
return $this->version;
}