@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 method visibility for `PhabricatorApplication` methods

Summary: Ref T6822.

Test Plan: Visual inspection. These methods are only called from within the `PhabricatorApplication` class.

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T6822

Differential Revision: https://secure.phabricator.com/D11243

+3 -3
+1 -1
src/applications/countdown/application/PhabricatorCountdownApplication.php
··· 48 48 ); 49 49 } 50 50 51 - public function getCustomCapabilities() { 51 + protected function getCustomCapabilities() { 52 52 return array( 53 53 PhabricatorCountdownDefaultViewCapability::CAPABILITY => array( 54 54 'caption' => pht('Default view policy for new countdowns.'),
+1 -1
src/applications/harbormaster/application/PhabricatorHarbormasterApplication.php
··· 81 81 ); 82 82 } 83 83 84 - public function getCustomCapabilities() { 84 + protected function getCustomCapabilities() { 85 85 return array( 86 86 HarbormasterManagePlansCapability::CAPABILITY => array( 87 87 'caption' => pht('Can create and manage build plans.'),
+1 -1
src/applications/slowvote/application/PhabricatorSlowvoteApplication.php
··· 55 55 ); 56 56 } 57 57 58 - public function getCustomCapabilities() { 58 + protected function getCustomCapabilities() { 59 59 return array( 60 60 PhabricatorSlowvoteDefaultViewCapability::CAPABILITY => array( 61 61 'caption' => pht('Default view policy for new polls.'),