1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-23 23:32:39 +01:00

Declare missing class properties

Summary: Code in these classes tries to access undefined properties. Thus define these properties.

Test Plan: Run PHPStan static code analysis; grep the code in each 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/D25712
This commit is contained in:
Andre Klapper 2024-07-02 20:53:23 +02:00
parent 21fbc806e4
commit 331b255b15
2 changed files with 2 additions and 0 deletions

View file

@ -3,6 +3,7 @@
final class PhutilPostmarkFuture extends FutureProxy {
private $future;
private $clientID;
private $accessToken;
private $method;
private $parameters;

View file

@ -7,6 +7,7 @@ final class ArcanistWorkingCopyPath
private $mode;
private $data;
private $binary;
private $mimeType;
private $dataAsLines;
private $charMap;
private $lineMap;