Fix typo in occ

Signed-off-by: Kim Brose <kim.brose@rwth-aachen.de>
This commit is contained in:
Kim Brose 2020-01-03 04:17:11 +01:00 committed by GitHub
parent 7ad3c2f228
commit 04aa4cf339
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View 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')) {