@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 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

+11
+2
src/applications/diffusion/query/pathid/DiffusionPathIDQuery.php
··· 5 5 */ 6 6 final class DiffusionPathIDQuery extends Phobject { 7 7 8 + private $paths = array(); 9 + 8 10 public function __construct(array $paths) { 9 11 $this->paths = $paths; 10 12 }
+1
src/applications/feed/builder/PhabricatorFeedBuilder.php
··· 2 2 3 3 final class PhabricatorFeedBuilder extends Phobject { 4 4 5 + private $user; 5 6 private $stories; 6 7 private $framed; 7 8 private $hovercards = false;
+1
src/applications/herald/adapter/HeraldDifferentialRevisionAdapter.php
··· 3 3 final class HeraldDifferentialRevisionAdapter 4 4 extends HeraldDifferentialAdapter { 5 5 6 + protected $diff; 6 7 protected $revision; 7 8 8 9 protected $explicitReviewers;
+2
src/applications/metamta/adapter/PhabricatorMailImplementationPHPMailerLiteAdapter.php
··· 6 6 class PhabricatorMailImplementationPHPMailerLiteAdapter 7 7 extends PhabricatorMailImplementationAdapter { 8 8 9 + protected $mailer; 10 + 9 11 /** 10 12 * @phutil-external-symbol class PHPMailerLite 11 13 */
+5
src/applications/releeph/view/branch/ReleephBranchTemplate.php
··· 4 4 5 5 const KEY = 'releeph.default-branch-template'; 6 6 7 + private $commitHandle; 8 + private $branchDate; 9 + private $projectName; 10 + private $isSymbolic; 11 + 7 12 public static function getDefaultTemplate() { 8 13 return PhabricatorEnv::getEnvConfig(self::KEY); 9 14 }