Page MenuHomestyx hydra

HarbormasterBuildLogPHIDType.php
No OneTemporary

HarbormasterBuildLogPHIDType.php

<?php
final class HarbormasterBuildLogPHIDType extends PhabricatorPHIDType {
const TYPECONST = 'HMCL';
public function getTypeName() {
return pht('Build Log');
}
public function newObject() {
return new HarbormasterBuildLog();
}
public function getPHIDTypeApplicationClass() {
return 'PhabricatorHarbormasterApplication';
}
protected function buildQueryForObjects(
PhabricatorObjectQuery $query,
array $phids) {
return id(new HarbormasterBuildLogQuery())
->withPHIDs($phids);
}
public function loadHandles(
PhabricatorHandleQuery $query,
array $handles,
array $objects) {
foreach ($handles as $phid => $handle) {
$build_log = $objects[$phid];
}
}
}

File Metadata

Mime Type
text/x-php
Expires
Thu, Jan 15, 2:04 AM (20 h, 35 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
615178
Default Alt Text
HarbormasterBuildLogPHIDType.php (737 B)

Event Timeline