Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2020-01-05 15:48:13 +0300
committerGitHub <noreply@github.com>2020-01-05 15:48:13 +0300
commitd7fdab0c0186254b1fdce4b52e13f2fb8867d3fe (patch)
treebadb5e22b82960b673fc8055ca7e8325b6248ed8 /core
parent9b7c8cac370aebf5e509afd96a4e8fbbacbc25bd (diff)
parent9c5fe8fca430a496e6eca7ab0a62451c863305e6 (diff)
Merge pull request #18641 from HarHarLinks/patch-1
Fix typo in occ
Diffstat (limited to 'core')
-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')) {