mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-24 07:42: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:
parent
21fbc806e4
commit
331b255b15
2 changed files with 2 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
||||||
final class PhutilPostmarkFuture extends FutureProxy {
|
final class PhutilPostmarkFuture extends FutureProxy {
|
||||||
|
|
||||||
private $future;
|
private $future;
|
||||||
|
private $clientID;
|
||||||
private $accessToken;
|
private $accessToken;
|
||||||
private $method;
|
private $method;
|
||||||
private $parameters;
|
private $parameters;
|
||||||
|
|
|
@ -7,6 +7,7 @@ final class ArcanistWorkingCopyPath
|
||||||
private $mode;
|
private $mode;
|
||||||
private $data;
|
private $data;
|
||||||
private $binary;
|
private $binary;
|
||||||
|
private $mimeType;
|
||||||
private $dataAsLines;
|
private $dataAsLines;
|
||||||
private $charMap;
|
private $charMap;
|
||||||
private $lineMap;
|
private $lineMap;
|
||||||
|
|
Loading…
Reference in a new issue