1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00

Fix another undeclared property

Summary: I think that I've caught the bulk of these issues now.

Test Plan: Eyeball it.

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: epriestley, Korvin

Differential Revision: https://secure.phabricator.com/D13296
This commit is contained in:
Joshua Spence 2015-06-15 07:54:12 -07:00 committed by epriestley
parent 0fd0f171f1
commit f87ffc41ce
2 changed files with 3 additions and 6 deletions

View file

@ -2,6 +2,8 @@
final class DrydockBlueprintScopeGuard extends Phobject {
private $blueprint;
public function __construct(DrydockBlueprintImplementation $blueprint) {
$this->blueprint = $blueprint;
}

View file

@ -5,7 +5,7 @@ final class ReleephBranchTemplate extends Phobject {
const KEY = 'releeph.default-branch-template';
private $commitHandle;
private $branchDate;
private $branchDate = null;
private $projectName;
private $isSymbolic;
@ -41,11 +41,6 @@ final class ReleephBranchTemplate extends Phobject {
return $fake_handle;
}
private $commitHandle;
private $branchDate = null;
private $projectName;
private $isSymbolic;
public function setCommitHandle(PhabricatorObjectHandle $handle) {
$this->commitHandle = $handle;
return $this;