Page MenuHomestyx hydra

DiffusionMercurialRequest.php
No OneTemporary

DiffusionMercurialRequest.php

<?php
/**
* @group diffusion
*/
final class DiffusionMercurialRequest extends DiffusionRequest {
protected function getSupportsBranches() {
return true;
}
protected function didInitialize() {
// Expand abbreviated hashes to full hashes so "/rXnnnn" (i.e., fewer than
// 40 characters) works correctly.
if (!$this->commit) {
return;
}
if (strlen($this->commit) == 40) {
return;
}
$this->expandCommitName();
}
public function getBranch() {
if ($this->branch) {
return $this->branch;
}
if ($this->repository) {
return $this->repository->getDefaultBranch();
}
throw new Exception("Unable to determine branch!");
}
public function getCommit() {
if ($this->commit) {
return $this->commit;
}
return $this->getBranch();
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, Apr 28, 7:40 PM (1 d, 20 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1175587
Default Alt Text
DiffusionMercurialRequest.php (837 B)

Event Timeline