@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
at recaptime-dev/main 27 lines 405 B view raw
1<?php 2 3final class PhabricatorProjectTriggerRuleRecord 4 extends Phobject { 5 6 private $type; 7 private $value; 8 9 public function setType($type) { 10 $this->type = $type; 11 return $this; 12 } 13 14 public function getType() { 15 return $this->type; 16 } 17 18 public function setValue($value) { 19 $this->value = $value; 20 return $this; 21 } 22 23 public function getValue() { 24 return $this->value; 25 } 26 27}