[ Index ] |
PHP Cross Reference of Phabricator |
[Summary view] [Print] [Text view]
1 <?php 2 3 abstract class PHIDConduitAPIMethod extends ConduitAPIMethod { 4 5 protected function buildHandleInformationDictionary( 6 PhabricatorObjectHandle $handle) { 7 8 return array( 9 'phid' => $handle->getPHID(), 10 'uri' => PhabricatorEnv::getProductionURI($handle->getURI()), 11 12 'typeName' => $handle->getTypeName(), 13 'type' => $handle->getType(), 14 15 'name' => $handle->getName(), 16 'fullName' => $handle->getFullName(), 17 18 'status' => $handle->getStatus(), 19 ); 20 } 21 22 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Sun Nov 30 09:20:46 2014 | Cross-referenced by PHPXref 0.7.1 |