1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-07 19:28:40 +02: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:
Andre Klapper 2024-07-25 15:53:09 +02:00
parent c5c2b8ce5a
commit 903015312a

View file

@ -8,7 +8,7 @@ abstract class PhabricatorDaemonController
}
public function buildApplicationMenu() {
return $this->buildSideNavView(true)->getMenu();
return $this->buildSideNavView()->getMenu();
}
protected function buildSideNavView() {