Increase visibility of PhabricatorController::buildApplicationMenu methods

Summary: Ref T6822. This method needs to be `public` because it is called from `PhabricatorApplicationSearchController::buildApplicationMenu()`.

Test Plan: I wouldn't expect //increasing// method visibility to break anything.

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T6822

Differential Revision: https://secure.phabricator.com/D11416
This commit is contained in:
Joshua Spence
2015-01-16 07:41:26 +11:00
parent 4135752490
commit c2ac63e9ad
32 changed files with 32 additions and 32 deletions

View File

@@ -13,7 +13,7 @@ abstract class PhabricatorTokenController extends PhabricatorController {
return $nav;
}
protected function buildApplicationMenu() {
public function buildApplicationMenu() {
return $this->buildSideNav()->getMenu();
}