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 /apps/user_ldap | |
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 'apps/user_ldap')
-rw-r--r-- | apps/user_ldap/lib/Command/Search.php | 4 |
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' ) ; } |