Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102096534
PhabricatorConduitResultInterface.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
Mon, Feb 17, 02:00
Size
800 B
Mime Type
text/x-php
Expires
Wed, Feb 19, 02:00 (2 d)
Engine
blob
Format
Raw Data
Handle
24281082
Attached To
rPH Phabricator
PhabricatorConduitResultInterface.php
View Options
<?php
interface
PhabricatorConduitResultInterface
extends
PhabricatorPHIDInterface
{
public
function
getFieldSpecificationsForConduit
();
public
function
getFieldValuesForConduit
();
public
function
getConduitSearchAttachments
();
}
// TEMPLATE IMPLEMENTATION /////////////////////////////////////////////////////
/* -( PhabricatorConduitResultInterface )---------------------------------- */
/*
public function getFieldSpecificationsForConduit() {
return array(
'name' => array(
'type' => 'string',
'description' => pht('The name of the object.'),
),
);
}
public function getFieldValuesForConduit() {
return array(
'name' => $this->getName(),
);
}
public function getConduitSearchAttachments() {
return array();
}
*/
Event Timeline
Log In to Comment