Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106054201
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
Fri, Mar 21, 21:54
Size
800 B
Mime Type
text/x-php
Expires
Sun, Mar 23, 21:54 (2 d)
Engine
blob
Format
Raw Data
Handle
25091080
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