aboutsummaryrefslogtreecommitdiffstats
path: root/apps/user_ldap
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 /apps/user_ldap
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 'apps/user_ldap')
-rw-r--r--apps/user_ldap/lib/Command/Search.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/user_ldap/lib/Command/Search.php b/apps/user_ldap/lib/Command/Search.php
index bba37e4a6ca..96c4df4b2bf 100644
--- a/apps/user_ldap/lib/Command/Search.php
+++ b/apps/user_ldap/lib/Command/Search.php
@@ -73,14 +73,14 @@ class Search extends Command {
null,
InputOption::VALUE_REQUIRED,
'The offset of the result set. Needs to be a multiple of limit. defaults to 0.',
- 0
+ '0'
)
->addOption(
'limit',
null,
InputOption::VALUE_REQUIRED,
'limit the results. 0 means no limit, defaults to 15',
- 15
+ '15'
)
;
}