3 final class PhabricatorRepositoryCommitRef
extends Phobject
{
9 private $parents = array();
11 public function setIdentifier($identifier) {
12 $this->identifier
= $identifier;
16 public function getIdentifier() {
17 return $this->identifier
;
20 public function setEpoch($epoch) {
21 $this->epoch
= $epoch;
25 public function getEpoch() {
29 public function setBranch($branch) {
30 $this->branch
= $branch;
34 public function getBranch() {
38 public function setIsPermanent($is_permanent) {
39 $this->isPermanent
= $is_permanent;
43 public function getIsPermanent() {
44 return $this->isPermanent
;
47 public function setParents(array $parents) {
48 $this->parents
= $parents;
52 public function getParents() {
53 return $this->parents
;