Fix return code of AppConfig::deleteUserValue

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
Morris Jobke 2020-05-13 14:55:00 +02:00
parent 8614abaa5b
commit e0d2cd40e7
No known key found for this signature in database
GPG Key ID: FE03C3A163FEDE68
1 changed files with 1 additions and 1 deletions

View File

@ -70,6 +70,6 @@ class AppConfig implements IAppConfig {
}
public function deleteUserValue(string $userId, string $key): void {
return $this->config->deleteUserValue($userId, $this->appName, $key);
$this->config->deleteUserValue($userId, $this->appName, $key);
}
}