3 final class PhabricatorDashboardPanelRef
10 public function setPanelPHID($panel_phid) {
11 $this->panelPHID
= $panel_phid;
15 public function getPanelPHID() {
16 return $this->panelPHID
;
19 public function setColumnKey($column_key) {
20 $this->columnKey
= $column_key;
24 public function getColumnKey() {
25 return $this->columnKey
;
28 public function setPanelKey($panel_key) {
29 $this->panelKey
= $panel_key;
33 public function getPanelKey() {
34 return $this->panelKey
;
37 public function toDictionary() {
39 'panelKey' => $this->getPanelKey(),
40 'panelPHID' => $this->getPanelPHID(),
41 'columnKey' => $this->getColumnKey(),