1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-19 16:58:48 +02:00

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
This commit is contained in:
Andre Klapper 2024-07-02 21:18:09 +02:00
parent 3fbb0309b5
commit 941b769aba

View file

@ -6,6 +6,7 @@ abstract class PhabricatorTimelineEngine
private $viewer;
private $object;
private $xactions;
private $request;
private $viewData;
final public static function newForObject($object) {