mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 09:42:09 -04:00
Remove unexpected argument
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
This commit is contained in:
parent
df92a97f5b
commit
778e5afcc5
2 changed files with 2 additions and 2 deletions
|
|
@ -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 a new issue