@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.)
hq.recaptime.dev/wiki/Phorge
phorge
phabricator
1<?php
2
3final class PhabricatorConduitSearchFieldSpecification
4 extends Phobject {
5
6 private $key;
7 private $type;
8 private $description;
9
10 public function setKey($key) {
11 $this->key = $key;
12 return $this;
13 }
14
15 public function getKey() {
16 return $this->key;
17 }
18
19 public function setType($type) {
20 $this->type = $type;
21 return $this;
22 }
23
24 public function getType() {
25 return $this->type;
26 }
27
28 public function setDescription($description) {
29 $this->description = $description;
30 return $this;
31 }
32
33 public function getDescription() {
34 return $this->description;
35 }
36
37}