Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/conduit/data/ConduitConstantDescription.php
12256 views
1
<?php
2
3
final class ConduitConstantDescription extends Phobject {
4
5
private $key;
6
private $value;
7
private $isDeprecated;
8
9
public function setKey($key) {
10
$this->key = $key;
11
return $this;
12
}
13
14
public function getKey() {
15
return $this->key;
16
}
17
18
public function setValue($value) {
19
$this->value = $value;
20
return $this;
21
}
22
23
public function getValue() {
24
return $this->value;
25
}
26
27
public function setIsDeprecated($is_deprecated) {
28
$this->isDeprecated = $is_deprecated;
29
return $this;
30
}
31
32
public function getIsDeprecated() {
33
return $this->isDeprecated;
34
}
35
36
}
37
38