mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-25 16:22:43 +01: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:
parent
3fbb0309b5
commit
941b769aba
1 changed files with 1 additions and 0 deletions
|
@ -6,6 +6,7 @@ abstract class PhabricatorTimelineEngine
|
||||||
private $viewer;
|
private $viewer;
|
||||||
private $object;
|
private $object;
|
||||||
private $xactions;
|
private $xactions;
|
||||||
|
private $request;
|
||||||
private $viewData;
|
private $viewData;
|
||||||
|
|
||||||
final public static function newForObject($object) {
|
final public static function newForObject($object) {
|
||||||
|
|
Loading…
Reference in a new issue