Correct Aphlict websocket URI construction after PHP8 compatibility changes
[phabricator.git] / src / applications / harbormaster / plan / HarbormasterBuildPlanBehaviorOption.php
blob65b9662b9fd6db21662fb1126691eb8c64bec6cf
1 <?php
3 final class HarbormasterBuildPlanBehaviorOption
4 extends Phobject {
6 private $name;
7 private $key;
8 private $icon;
9 private $description;
10 private $isDefault;
12 public function setName($name) {
13 $this->name = $name;
14 return $this;
17 public function getName() {
18 return $this->name;
21 public function setKey($key) {
22 $this->key = $key;
23 return $this;
26 public function getKey() {
27 return $this->key;
30 public function setDescription($description) {
31 $this->description = $description;
32 return $this;
35 public function getDescription() {
36 return $this->description;
39 public function setIsDefault($is_default) {
40 $this->isDefault = $is_default;
41 return $this;
44 public function getIsDefault() {
45 return $this->isDefault;
48 public function setIcon($icon) {
49 $this->icon = $icon;
50 return $this;
53 public function getIcon() {
54 return $this->icon;