]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix typo in occ
authorKim Brose <kim.brose@rwth-aachen.de>
Fri, 3 Jan 2020 03:17:11 +0000 (04:17 +0100)
committerGitHub <noreply@github.com>
Fri, 3 Jan 2020 03:17:11 +0000 (04:17 +0100)
Signed-off-by: Kim Brose <kim.brose@rwth-aachen.de>
core/Command/User/Setting.php

index 72367bca96f3f39d9be5297e37c090dda607f74e..969e0372158533a493e0b08020e3a639892d6bd5 100644 (file)
@@ -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')) {