diff --git a/core/Command/User/Setting.php b/core/Command/User/Setting.php index 72367bca96..969e037215 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')) {