Page MenuHomec4science

PHIDConduitAPIMethod.php
No OneTemporary

File Metadata

Created
Wed, Sep 11, 05:28

PHIDConduitAPIMethod.php

<?php
abstract class PHIDConduitAPIMethod 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