Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93141666
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
Tue, Nov 26, 12:48
Size
853 B
Mime Type
text/x-php
Expires
Thu, Nov 28, 12:48 (2 d)
Engine
blob
Format
Raw Data
Handle
22580310
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(
id(new PhabricatorConduitSearchFieldSpecification())
->setKey('name')
->setType('string')
->setDescription(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