Merge pull request #22178 from nextcloud/backport/22176/stable19

[stable19] Remove unexpected argument
This commit is contained in:
blizzz 2020-08-11 10:07:32 +00:00 committed by GitHub
commit d06bf6d631
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,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();
}
}
}