summaryrefslogtreecommitdiffstats
path: root/core/Command/User
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2021-06-09 13:25:31 +0200
committerChristoph Wurst <christoph@winzerhof-wurst.at>2021-06-09 13:25:31 +0200
commitbf564e2a5a5b19f99d6dad94f099a757f5a044ff (patch)
tree0b0fa5d5394b0d38fc0a8e7cab9fef84cadfef12 /core/Command/User
parentb2d21466adc7a6610b7184a879538f395ecc7260 (diff)
downloadnextcloud-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/User')
-rw-r--r--core/Command/User/ListCommand.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Command/User/ListCommand.php b/core/Command/User/ListCommand.php
index e28403aa04c..a30b1cae118 100644
--- a/core/Command/User/ListCommand.php
+++ b/core/Command/User/ListCommand.php
@@ -60,13 +60,13 @@ class ListCommand extends Base {
'l',
InputOption::VALUE_OPTIONAL,
'Number of users to retrieve',
- 500
+ '500'
)->addOption(
'offset',
'o',
InputOption::VALUE_OPTIONAL,
'Offset for retrieving users',
- 0
+ '0'
)->addOption(
'output',
null,