diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-06-09 13:25:31 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-06-09 13:25:31 +0200 |
commit | bf564e2a5a5b19f99d6dad94f099a757f5a044ff (patch) | |
tree | 0b0fa5d5394b0d38fc0a8e7cab9fef84cadfef12 /core/Command/Group | |
parent | b2d21466adc7a6610b7184a879538f395ecc7260 (diff) | |
download | nextcloud-server-bf564e2a5a5b19f99d6dad94f099a757f5a044ff.tar.gz nextcloud-server-bf564e2a5a5b19f99d6dad94f099a757f5a044ff.zip |
Convert command option defaults to strings
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'core/Command/Group')
-rw-r--r-- | core/Command/Group/ListCommand.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Command/Group/ListCommand.php b/core/Command/Group/ListCommand.php index 5531481d3b3..db7493fe8d4 100644 --- a/core/Command/Group/ListCommand.php +++ b/core/Command/Group/ListCommand.php @@ -52,13 +52,13 @@ class ListCommand extends Base { 'l', InputOption::VALUE_OPTIONAL, 'Number of groups to retrieve', - 500 + '500' )->addOption( 'offset', 'o', InputOption::VALUE_OPTIONAL, 'Offset for retrieving groups', - 0 + '0' )->addOption( 'info', 'i', |