mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
78 lines
1.3 KiB
PHP
78 lines
1.3 KiB
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorConfigOption extends Phobject {
|
||
|
|
||
|
private $key;
|
||
|
private $default;
|
||
|
private $summary;
|
||
|
private $description;
|
||
|
private $type;
|
||
|
private $options;
|
||
|
private $group;
|
||
|
|
||
|
|
||
|
public function setGroup(PhabricatorApplicationConfigOptions $group) {
|
||
|
$this->group = $group;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function getGroup() {
|
||
|
return $this->group;
|
||
|
}
|
||
|
|
||
|
public function setOptions(array $options) {
|
||
|
$this->options = $options;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function getOptions() {
|
||
|
return $this->options;
|
||
|
}
|
||
|
|
||
|
public function setKey($key) {
|
||
|
$this->key = $key;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function getKey() {
|
||
|
return $this->key;
|
||
|
}
|
||
|
|
||
|
public function setDefault($default) {
|
||
|
$this->default = $default;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function getDefault() {
|
||
|
return $this->default;
|
||
|
}
|
||
|
|
||
|
public function setSummary($summary) {
|
||
|
$this->summary = $summary;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function getSummary() {
|
||
|
return $this->summary;
|
||
|
}
|
||
|
|
||
|
public function setDescription($description) {
|
||
|
$this->description = $description;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function getDescription() {
|
||
|
return $this->description;
|
||
|
}
|
||
|
|
||
|
public function setType($type) {
|
||
|
$this->type = $type;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function getType() {
|
||
|
return $this->type;
|
||
|
}
|
||
|
|
||
|
}
|