mirror of
https://we.phorge.it/source/phorge.git
synced 2025-03-28 12:08:14 +01: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 {
|
||||
|
||||
private $paths = array();
|
||||
|
||||
public function __construct(array $paths) {
|
||||
$this->paths = $paths;
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
final class PhabricatorFeedBuilder extends Phobject {
|
||||
|
||||
private $user;
|
||||
private $stories;
|
||||
private $framed;
|
||||
private $hovercards = false;
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
final class HeraldDifferentialRevisionAdapter
|
||||
extends HeraldDifferentialAdapter {
|
||||
|
||||
protected $diff;
|
||||
protected $revision;
|
||||
|
||||
protected $explicitReviewers;
|
||||
|
|
|
@ -6,6 +6,8 @@
|
|||
class PhabricatorMailImplementationPHPMailerLiteAdapter
|
||||
extends PhabricatorMailImplementationAdapter {
|
||||
|
||||
protected $mailer;
|
||||
|
||||
/**
|
||||
* @phutil-external-symbol class PHPMailerLite
|
||||
*/
|
||||
|
|
|
@ -4,6 +4,11 @@ final class ReleephBranchTemplate extends Phobject {
|
|||
|
||||
const KEY = 'releeph.default-branch-template';
|
||||
|
||||
private $commitHandle;
|
||||
private $branchDate;
|
||||
private $projectName;
|
||||
private $isSymbolic;
|
||||
|
||||
public static function getDefaultTemplate() {
|
||||
return PhabricatorEnv::getEnvConfig(self::KEY);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue