@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

authored by

Joshua Spence and committed by
epriestley
f87ffc41 0fd0f171

+3 -6
+2
src/applications/drydock/util/DrydockBlueprintScopeGuard.php
··· 2 2 3 3 final class DrydockBlueprintScopeGuard extends Phobject { 4 4 5 + private $blueprint; 6 + 5 7 public function __construct(DrydockBlueprintImplementation $blueprint) { 6 8 $this->blueprint = $blueprint; 7 9 }
+1 -6
src/applications/releeph/view/branch/ReleephBranchTemplate.php
··· 5 5 const KEY = 'releeph.default-branch-template'; 6 6 7 7 private $commitHandle; 8 - private $branchDate; 8 + private $branchDate = null; 9 9 private $projectName; 10 10 private $isSymbolic; 11 11 ··· 40 40 } 41 41 return $fake_handle; 42 42 } 43 - 44 - private $commitHandle; 45 - private $branchDate = null; 46 - private $projectName; 47 - private $isSymbolic; 48 43 49 44 public function setCommitHandle(PhabricatorObjectHandle $handle) { 50 45 $this->commitHandle = $handle;