Merge pull request #22178 from nextcloud/backport/22176/stable19
[stable19] Remove unexpected argument
This commit is contained in:
commit
d06bf6d631
|
@ -107,7 +107,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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue