diff options
author | Kim Brose <kim.brose@rwth-aachen.de> | 2020-01-03 04:17:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-03 04:17:11 +0100 |
commit | 04aa4cf3394b61823530488aa3817686ea5a3d00 (patch) | |
tree | 0a0daa391b2f5c302a95d7a59ad87ad4266e85a1 /core/Command/User | |
parent | 7ad3c2f228853df0e321be2828c42f7b484e2828 (diff) | |
download | nextcloud-server-04aa4cf3394b61823530488aa3817686ea5a3d00.tar.gz nextcloud-server-04aa4cf3394b61823530488aa3817686ea5a3d00.zip |
Fix typo in occ
Signed-off-by: Kim Brose <kim.brose@rwth-aachen.de>
Diffstat (limited to 'core/Command/User')
-rw-r--r-- | core/Command/User/Setting.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/User/Setting.php b/core/Command/User/Setting.php index 72367bca96f..969e0372158 100644 --- a/core/Command/User/Setting.php +++ b/core/Command/User/Setting.php @@ -125,7 +125,7 @@ class Setting extends Base { protected function checkInput(InputInterface $input) { $uid = $input->getArgument('uid'); if (!$input->getOption('ignore-missing-user') && !$this->userManager->userExists($uid)) { - throw new \InvalidArgumentException('The user "' . $uid . '" does not exists.'); + throw new \InvalidArgumentException('The user "' . $uid . '" does not exist.'); } if ($input->getArgument('key') === '' && $input->hasParameterOption('--default-value')) { |