Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F110090135
ConduitAPI_phid_Method.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Apr 24, 15:57
Size
559 B
Mime Type
text/x-php
Expires
Sat, Apr 26, 15:57 (2 d)
Engine
blob
Format
Raw Data
Handle
25621593
Attached To
rPH Phabricator
ConduitAPI_phid_Method.php
View Options
<?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
Log In to Comment