1
0
Fork 0

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.
pull/3774/head
Christian Flothmann 2015-02-25 11:54:18 +01:00
parent 84d4594278
commit fa3ea2a626
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ EOT
implode(', ', $package->getLicense()) ?: 'none', implode(', ', $package->getLicense()) ?: 'none',
)); ));
} }
$table->render($output); $table->render();
break; break;
case 'json': case 'json':