Remove unexpected argument
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
This commit is contained in:
parent
df92a97f5b
commit
778e5afcc5
|
@ -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