Page MenuHomec4science

ConduitAPI_phid_Method.php
No OneTemporary

File Metadata

Created
Thu, Oct 17, 03:33

ConduitAPI_phid_Method.php

<?php
/**
* @group conduit
*/
abstract class ConduitAPI_phid_Method extends ConduitAPIMethod {
protected function buildHandleInformationDictionary(
PhabricatorObjectHandle $handle) {
return array(
'phid' => $handle->getPHID(),
'uri' => PhabricatorEnv::getProductionURI($handle->getURI()),
'typeName' => $handle->getTypeName(),
'type' => $handle->getType(),
'name' => $handle->getName(),
'fullName' => $handle->getFullName(),
'status' => $handle->getStatus(),
);
}
}

Event Timeline