From 5c43485e570dd5cf7594dabb3edc6257896f872e Mon Sep 17 00:00:00 2001 From: SofHad Date: Sun, 28 Dec 2014 00:53:35 +0100 Subject: [PATCH] Suppress unused parameters in HomeCommand --- src/Composer/Command/HomeCommand.php | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/Composer/Command/HomeCommand.php b/src/Composer/Command/HomeCommand.php index 5b0e32244..09b48bb2b 100644 --- a/src/Composer/Command/HomeCommand.php +++ b/src/Composer/Command/HomeCommand.php @@ -55,7 +55,7 @@ EOT */ protected function execute(InputInterface $input, OutputInterface $output) { - $repo = $this->initializeRepo($input, $output); + $repo = $this->initializeRepo(); $return = 0; foreach ($input->getArgument('packages') as $packageName) { @@ -138,13 +138,11 @@ EOT } /** - * initializes the repo + * Initializes the repo * - * @param InputInterface $input - * @param OutputInterface $output * @return CompositeRepository */ - private function initializeRepo(InputInterface $input, OutputInterface $output) + private function initializeRepo() { $composer = $this->getComposer(false);