Correct a parameter order swap in "diffusion.historyquery" for Mercurial
[phabricator.git] / src / applications / dashboard / layoutconfig / PhabricatorDashboardPanelRef.php
blob96a912e30a7623ced463f1e5342ac52436626b16
1 <?php
3 final class PhabricatorDashboardPanelRef
4 extends Phobject {
6 private $panelPHID;
7 private $panelKey;
8 private $columnKey;
10 public function setPanelPHID($panel_phid) {
11 $this->panelPHID = $panel_phid;
12 return $this;
15 public function getPanelPHID() {
16 return $this->panelPHID;
19 public function setColumnKey($column_key) {
20 $this->columnKey = $column_key;
21 return $this;
24 public function getColumnKey() {
25 return $this->columnKey;
28 public function setPanelKey($panel_key) {
29 $this->panelKey = $panel_key;
30 return $this;
33 public function getPanelKey() {
34 return $this->panelKey;
37 public function toDictionary() {
38 return array(
39 'panelKey' => $this->getPanelKey(),
40 'panelPHID' => $this->getPanelPHID(),
41 'columnKey' => $this->getColumnKey(),