From fa3ea2a62676106ee64a177145c867ab9fe2947e Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Wed, 25 Feb 2015 11:54:18 +0100 Subject: [PATCH] remove unused method argument Unlike the `TableHelper`, the `render()` method of the `Table` class does not make use of an `$output` argument. The actual `OutputInterface` to send the table to is passed in the constructor instead. --- src/Composer/Command/LicensesCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Command/LicensesCommand.php b/src/Composer/Command/LicensesCommand.php index 757de6d87..176b1bb61 100644 --- a/src/Composer/Command/LicensesCommand.php +++ b/src/Composer/Command/LicensesCommand.php @@ -83,7 +83,7 @@ EOT implode(', ', $package->getLicense()) ?: 'none', )); } - $table->render($output); + $table->render(); break; case 'json':