Correct Aphlict websocket URI construction after PHP8 compatibility changes
[phabricator.git] / src / applications / conduit / interface / PhabricatorConduitResultInterface.php
blob1174cfc6f0b23cd725d93baed0abcb33ab71b624
1 <?php
3 interface PhabricatorConduitResultInterface
4 extends PhabricatorPHIDInterface {
6 public function getFieldSpecificationsForConduit();
7 public function getFieldValuesForConduit();
8 public function getConduitSearchAttachments();
12 // TEMPLATE IMPLEMENTATION /////////////////////////////////////////////////////
14 /* -( PhabricatorConduitResultInterface )---------------------------------- */
17 public function getFieldSpecificationsForConduit() {
18 return array(
19 id(new PhabricatorConduitSearchFieldSpecification())
20 ->setKey('name')
21 ->setType('string')
22 ->setDescription(pht('The name of the object.')),
26 public function getFieldValuesForConduit() {
27 return array(
28 'name' => $this->getName(),
32 public function getConduitSearchAttachments() {
33 return array();