@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.

Declare missing class property in PhabricatorTimelineEngine

Summary: `setRequest()` and `getRequest` in this class access the undefined property `$request`. Thus define this property.

Test Plan: Run PHPStan static code analysis; grep the code in this class.

Reviewers: O1 Blessed Committers, valerio.bozzolan

Reviewed By: O1 Blessed Committers, valerio.bozzolan

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Differential Revision: https://we.phorge.it/D25716

+1
+1
src/applications/transactions/engine/PhabricatorTimelineEngine.php
··· 6 6 private $viewer; 7 7 private $object; 8 8 private $xactions; 9 + private $request; 9 10 private $viewData; 10 11 11 12 final public static function newForObject($object) {