From 4e31cadb54d2e454bf63100f6d0873eaadf6f756 Mon Sep 17 00:00:00 2001 From: Andre Klapper Date: Thu, 25 Jul 2024 15:49:43 +0200 Subject: [PATCH] Remove unused parameter from PhabricatorConfigConsoleController::newLibraryVersionTable() call Summary: `Method PhabricatorConfigConsoleController::newLibraryVersionTable() invoked with 1 parameter, 0 required.` Thus remove the parameter from its only call across the codebase. 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/D25745 --- .../config/controller/PhabricatorConfigConsoleController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/config/controller/PhabricatorConfigConsoleController.php b/src/applications/config/controller/PhabricatorConfigConsoleController.php index e545019666..ad81e28be7 100644 --- a/src/applications/config/controller/PhabricatorConfigConsoleController.php +++ b/src/applications/config/controller/PhabricatorConfigConsoleController.php @@ -60,7 +60,7 @@ final class PhabricatorConfigConsoleController ->setBackground(PHUIObjectBoxView::WHITE_CONFIG) ->setObjectList($menu); - $versions = $this->newLibraryVersionTable($viewer); + $versions = $this->newLibraryVersionTable(); $binary_versions = $this->newBinaryVersionTable(); $launcher_view = id(new PHUILauncherView())