Merge pull request #22176 from nextcloud/debt/noid/table-render-too-many-arguments

Remove unexpected argument
This commit is contained in:
Morris Jobke 2020-08-11 09:44:28 +02:00 committed by GitHub
commit 548576ec10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -108,7 +108,7 @@ class ShowConfig extends Command {
$rows[] = [$key, $value];
}
$table->setRows($rows);
$table->render($output);
$table->render();
}
}
}

View File

@ -101,7 +101,7 @@ class ShowRemnants extends Command {
$output->writeln(json_encode($rows));
} else {
$table->setRows($rows);
$table->render($output);
$table->render();
}
return 0;
}