Remove useless var in apps/settings/lib/SetupChecks/CheckUserCertificates.php

Co-authored-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
Signed-off-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com>
This commit is contained in:
Côme Chilliet 2023-10-16 16:37:07 +02:00 committed by Côme Chilliet
parent 6aa6f26427
commit 11ebf469da
No known key found for this signature in database
GPG key ID: A3E2F658B28C760A

View file

@ -38,8 +38,7 @@ class CheckUserCertificates implements ISetupCheck {
private IL10N $l10n,
IConfig $config,
) {
$configValue = $config->getAppValue('files_external', 'user_certificate_scan', '');
$this->configValue = $configValue;
$this->configValue = $config->getAppValue('files_external', 'user_certificate_scan', '');
}
public function getCategory(): string {