Page MenuHomec4science

ReleephBranchPHIDType.php
No OneTemporary

File Metadata

Created
Sun, Jul 14, 23:35

ReleephBranchPHIDType.php

<?php
final class ReleephBranchPHIDType extends PhabricatorPHIDType {
const TYPECONST = 'REBR';
public function getTypeName() {
return pht('Releeph Branch');
}
public function newObject() {
return new ReleephBranch();
}
public function getPHIDTypeApplicationClass() {
return 'PhabricatorReleephApplication';
}
protected function buildQueryForObjects(
PhabricatorObjectQuery $query,
array $phids) {
return id(new ReleephBranchQuery())
->withPHIDs($phids);
}
public function loadHandles(
PhabricatorHandleQuery $query,
array $handles,
array $objects) {
foreach ($handles as $phid => $handle) {
$branch = $objects[$phid];
$handle->setURI($branch->getURI());
$handle->setName($branch->getBasename());
$handle->setFullName($branch->getName());
}
}
}

Event Timeline