Page MenuHomestyx hydra

PhabricatorRepositoryCommitRef.php
No OneTemporary

PhabricatorRepositoryCommitRef.php

<?php
final class PhabricatorRepositoryCommitRef {
private $identifier;
private $epoch;
private $branch;
private $canCloseImmediately;
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;
}
public function setCanCloseImmediately($can_close_immediately) {
$this->canCloseImmediately = $can_close_immediately;
return $this;
}
public function getCanCloseImmediately() {
return $this->canCloseImmediately;
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, Nov 26, 8:31 PM (1 d, 4 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
349751
Default Alt Text
PhabricatorRepositoryCommitRef.php (864 B)

Event Timeline