@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 458 B view raw
1<?php 2 3final class PhabricatorChartDisplayData 4 extends Phobject { 5 6 private $wireData; 7 private $range; 8 9 public function setWireData(array $wire_data) { 10 $this->wireData = $wire_data; 11 return $this; 12 } 13 14 public function getWireData() { 15 return $this->wireData; 16 } 17 18 public function setRange(PhabricatorChartInterval $range) { 19 $this->range = $range; 20 return $this; 21 } 22 23 public function getRange() { 24 return $this->range; 25 } 26 27}