add new setting to preselect system distribution to ease configuration

Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann
2022-04-30 14:01:49 +02:00
parent 14c86d3d21
commit e768d834c1
6 changed files with 44 additions and 2 deletions

View File

@@ -94,7 +94,7 @@ final class RunApiCommand extends CliCommand
} else {
$rows = [];
foreach ($docs['params'] as $param) {
$rows[] = [$param['type'], '<options=bold>'.$param['parameter'].'</>', $param['desc'] ?? ""];
$rows[] = [$param['type'], '<options=bold>' . $param['parameter'] . '</>', $param['desc'] ?? ""];
}
$io->table(['Type', 'Name', 'Description'], $rows);
}