Merge pull request #22176 from nextcloud/debt/noid/table-render-too-many-arguments
Remove unexpected argument
This commit is contained in:
commit
548576ec10
|
@ -108,7 +108,7 @@ class ShowConfig extends Command {
|
|||
$rows[] = [$key, $value];
|
||||
}
|
||||
$table->setRows($rows);
|
||||
$table->render($output);
|
||||
$table->render();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -101,7 +101,7 @@ class ShowRemnants extends Command {
|
|||
$output->writeln(json_encode($rows));
|
||||
} else {
|
||||
$table->setRows($rows);
|
||||
$table->render($output);
|
||||
$table->render();
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue