Correct Aphlict websocket URI construction after PHP8 compatibility changes
[phabricator.git] / src / applications / phid / conduit / PHIDConduitAPIMethod.php
blob5519406439eae2ace70e3e7ed98f636b75e6788d
1 <?php
3 abstract class PHIDConduitAPIMethod extends ConduitAPIMethod {
5 protected function buildHandleInformationDictionary(
6 PhabricatorObjectHandle $handle) {
8 return array(
9 'phid' => $handle->getPHID(),
10 'uri' => PhabricatorEnv::getProductionURI($handle->getURI()),
12 'typeName' => $handle->getTypeName(),
13 'type' => $handle->getType(),
15 'name' => $handle->getName(),
16 'fullName' => $handle->getFullName(),
18 'status' => $handle->getStatus(),