mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-03 07:58:18 +02:00
Fix a few more undeclared properties
Summary: Ref T8538. Ref T8539. Ref T8541. Test Plan: Eyeball it. Reviewers: epriestley, de_jean_7777, benoittgt, #blessed_reviewers Reviewed By: benoittgt Subscribers: epriestley, Korvin Maniphest Tasks: T8541, T8538, T8539 Differential Revision: https://secure.phabricator.com/D13293
This commit is contained in:
parent
b95fc8ba5d
commit
62648237c2
5 changed files with 11 additions and 0 deletions
|
@ -5,6 +5,8 @@
|
||||||
*/
|
*/
|
||||||
final class DiffusionPathIDQuery extends Phobject {
|
final class DiffusionPathIDQuery extends Phobject {
|
||||||
|
|
||||||
|
private $paths = array();
|
||||||
|
|
||||||
public function __construct(array $paths) {
|
public function __construct(array $paths) {
|
||||||
$this->paths = $paths;
|
$this->paths = $paths;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
final class PhabricatorFeedBuilder extends Phobject {
|
final class PhabricatorFeedBuilder extends Phobject {
|
||||||
|
|
||||||
|
private $user;
|
||||||
private $stories;
|
private $stories;
|
||||||
private $framed;
|
private $framed;
|
||||||
private $hovercards = false;
|
private $hovercards = false;
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
final class HeraldDifferentialRevisionAdapter
|
final class HeraldDifferentialRevisionAdapter
|
||||||
extends HeraldDifferentialAdapter {
|
extends HeraldDifferentialAdapter {
|
||||||
|
|
||||||
|
protected $diff;
|
||||||
protected $revision;
|
protected $revision;
|
||||||
|
|
||||||
protected $explicitReviewers;
|
protected $explicitReviewers;
|
||||||
|
|
|
@ -6,6 +6,8 @@
|
||||||
class PhabricatorMailImplementationPHPMailerLiteAdapter
|
class PhabricatorMailImplementationPHPMailerLiteAdapter
|
||||||
extends PhabricatorMailImplementationAdapter {
|
extends PhabricatorMailImplementationAdapter {
|
||||||
|
|
||||||
|
protected $mailer;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @phutil-external-symbol class PHPMailerLite
|
* @phutil-external-symbol class PHPMailerLite
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -4,6 +4,11 @@ final class ReleephBranchTemplate extends Phobject {
|
||||||
|
|
||||||
const KEY = 'releeph.default-branch-template';
|
const KEY = 'releeph.default-branch-template';
|
||||||
|
|
||||||
|
private $commitHandle;
|
||||||
|
private $branchDate;
|
||||||
|
private $projectName;
|
||||||
|
private $isSymbolic;
|
||||||
|
|
||||||
public static function getDefaultTemplate() {
|
public static function getDefaultTemplate() {
|
||||||
return PhabricatorEnv::getEnvConfig(self::KEY);
|
return PhabricatorEnv::getEnvConfig(self::KEY);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue