Correct a parameter order swap in "diffusion.historyquery" for Mercurial
[phabricator.git] / src / applications / conduit / data / ConduitConstantDescription.php
blobc9b2d00f6becc6f61c4f918a966902c16545b1e2
1 <?php
3 final class ConduitConstantDescription extends Phobject {
5 private $key;
6 private $value;
7 private $isDeprecated;
9 public function setKey($key) {
10 $this->key = $key;
11 return $this;
14 public function getKey() {
15 return $this->key;
18 public function setValue($value) {
19 $this->value = $value;
20 return $this;
23 public function getValue() {
24 return $this->value;
27 public function setIsDeprecated($is_deprecated) {
28 $this->isDeprecated = $is_deprecated;
29 return $this;
32 public function getIsDeprecated() {
33 return $this->isDeprecated;