Correct a parameter order swap in "diffusion.historyquery" for Mercurial
[phabricator.git] / src / applications / transactions / editengine / PhabricatorEditPage.php
blob3669ef4494da9ee68a377e1efc5cc161227f22e7
1 <?php
4 final class PhabricatorEditPage
5 extends Phobject {
7 private $key;
8 private $label;
9 private $fieldKeys = array();
10 private $viewURI;
11 private $isDefault;
13 public function setKey($key) {
14 $this->key = $key;
15 return $this;
18 public function getKey() {
19 return $this->key;
22 public function setLabel($label) {
23 $this->label = $label;
24 return $this;
27 public function getLabel() {
28 return $this->label;
31 public function setFieldKeys(array $field_keys) {
32 $this->fieldKeys = $field_keys;
33 return $this;
36 public function getFieldKeys() {
37 return $this->fieldKeys;
40 public function setIsDefault($is_default) {
41 $this->isDefault = $is_default;
42 return $this;
45 public function getIsDefault() {
46 return $this->isDefault;
49 public function setViewURI($view_uri) {
50 $this->viewURI = $view_uri;
51 return $this;
54 public function getViewURI() {
55 return $this->viewURI;