@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at upstream/main 27 lines 387 B view raw
1<?php 2 3final class PhabricatorBulkEditGroup 4 extends Phobject { 5 6 private $key; 7 private $label; 8 9 public function setKey($key) { 10 $this->key = $key; 11 return $this; 12 } 13 14 public function getKey() { 15 return $this->key; 16 } 17 18 public function setLabel($label) { 19 $this->label = $label; 20 return $this; 21 } 22 23 public function getLabel() { 24 return $this->label; 25 } 26 27}