From 04aa4cf3394b61823530488aa3817686ea5a3d00 Mon Sep 17 00:00:00 2001 From: Kim Brose <kim.brose@rwth-aachen.de> Date: Fri, 3 Jan 2020 04:17:11 +0100 Subject: [PATCH] Fix typo in occ Signed-off-by: Kim Brose <kim.brose@rwth-aachen.de> --- core/Command/User/Setting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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')) { -- GitLab