From 903015312a0bf1efaee75bf2d48e0dedd66ae14a Mon Sep 17 00:00:00 2001 From: Andre Klapper Date: Thu, 25 Jul 2024 15:53:09 +0200 Subject: [PATCH] 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 --- .../daemon/controller/PhabricatorDaemonController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/daemon/controller/PhabricatorDaemonController.php b/src/applications/daemon/controller/PhabricatorDaemonController.php index 05c850d399..bbf259b000 100644 --- a/src/applications/daemon/controller/PhabricatorDaemonController.php +++ b/src/applications/daemon/controller/PhabricatorDaemonController.php @@ -8,7 +8,7 @@ abstract class PhabricatorDaemonController } public function buildApplicationMenu() { - return $this->buildSideNavView(true)->getMenu(); + return $this->buildSideNavView()->getMenu(); } protected function buildSideNavView() {