mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
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
This commit is contained in:
parent
78b19a43e1
commit
367918aac1
3 changed files with 3 additions and 3 deletions
|
@ -48,7 +48,7 @@ final class PhabricatorCountdownApplication extends PhabricatorApplication {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getCustomCapabilities() {
|
protected function getCustomCapabilities() {
|
||||||
return array(
|
return array(
|
||||||
PhabricatorCountdownDefaultViewCapability::CAPABILITY => array(
|
PhabricatorCountdownDefaultViewCapability::CAPABILITY => array(
|
||||||
'caption' => pht('Default view policy for new countdowns.'),
|
'caption' => pht('Default view policy for new countdowns.'),
|
||||||
|
|
|
@ -81,7 +81,7 @@ final class PhabricatorHarbormasterApplication extends PhabricatorApplication {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getCustomCapabilities() {
|
protected function getCustomCapabilities() {
|
||||||
return array(
|
return array(
|
||||||
HarbormasterManagePlansCapability::CAPABILITY => array(
|
HarbormasterManagePlansCapability::CAPABILITY => array(
|
||||||
'caption' => pht('Can create and manage build plans.'),
|
'caption' => pht('Can create and manage build plans.'),
|
||||||
|
|
|
@ -55,7 +55,7 @@ final class PhabricatorSlowvoteApplication extends PhabricatorApplication {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getCustomCapabilities() {
|
protected function getCustomCapabilities() {
|
||||||
return array(
|
return array(
|
||||||
PhabricatorSlowvoteDefaultViewCapability::CAPABILITY => array(
|
PhabricatorSlowvoteDefaultViewCapability::CAPABILITY => array(
|
||||||
'caption' => pht('Default view policy for new polls.'),
|
'caption' => pht('Default view policy for new polls.'),
|
||||||
|
|
Loading…
Reference in a new issue