summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/Command/User/Setting.php2
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')) {