mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 06:42:42 +01:00
Remove unused parameter from PhabricatorDaemonController::buildSideNavView() call
Summary: `Method PhabricatorDaemonController::buildSideNavView() invoked with 1 parameter, 0 required.` Thus remove the parameter from its call in the same class. Test Plan: Read the code. Reviewers: O1 Blessed Committers, valerio.bozzolan Reviewed By: O1 Blessed Committers, valerio.bozzolan Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno Differential Revision: https://we.phorge.it/D25746
This commit is contained in:
parent
c5c2b8ce5a
commit
903015312a
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ abstract class PhabricatorDaemonController
|
|||
}
|
||||
|
||||
public function buildApplicationMenu() {
|
||||
return $this->buildSideNavView(true)->getMenu();
|
||||
return $this->buildSideNavView()->getMenu();
|
||||
}
|
||||
|
||||
protected function buildSideNavView() {
|
||||
|
|
Loading…
Reference in a new issue