@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 recaptime-dev/main 27 lines 499 B view raw
1<?php 2 3final class PhabricatorChartAxis 4 extends Phobject { 5 6 private $minimumValue; 7 private $maximumValue; 8 9 public function setMinimumValue($minimum_value) { 10 $this->minimumValue = $minimum_value; 11 return $this; 12 } 13 14 public function getMinimumValue() { 15 return $this->minimumValue; 16 } 17 18 public function setMaximumValue($maximum_value) { 19 $this->maximumValue = $maximum_value; 20 return $this; 21 } 22 23 public function getMaximumValue() { 24 return $this->maximumValue; 25 } 26 27}