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
parent
84d4594278
commit
fa3ea2a626
|
@ -83,7 +83,7 @@ EOT
|
||||||
implode(', ', $package->getLicense()) ?: 'none',
|
implode(', ', $package->getLicense()) ?: 'none',
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
$table->render($output);
|
$table->render();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'json':
|
case 'json':
|
||||||
|
|
Loading…
Reference in New Issue