Page MenuHomec4science

PhabricatorRepositoryCommitRef.php
No OneTemporary

File Metadata

Created
Sun, Jun 1, 17:50

PhabricatorRepositoryCommitRef.php

<?php
final class PhabricatorRepositoryCommitRef {
private $identifier;
private $epoch;
private $branch;
public function setIdentifier($identifier) {
$this->identifier = $identifier;
return $this;
}
public function getIdentifier() {
return $this->identifier;
}
public function setEpoch($epoch) {
$this->epoch = $epoch;
return $this;
}
public function getEpoch() {
return $this->epoch;
}
public function setBranch($branch) {
$this->branch = $branch;
return $this;
}
public function getBranch() {
return $this->branch;
}
}

Event Timeline