diff options
author | Côme Chilliet <91878298+come-nc@users.noreply.github.com> | 2023-10-16 16:37:07 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-10-19 11:44:03 +0200 |
commit | 11ebf469da14224b3e1146b65eb16095ab8b22a8 (patch) | |
tree | af9509f660358a126e594b138ba99a02419672c8 /apps | |
parent | 6aa6f26427192cb4bab7ee614b5e6c020047f755 (diff) | |
download | nextcloud-server-11ebf469da14224b3e1146b65eb16095ab8b22a8.tar.gz nextcloud-server-11ebf469da14224b3e1146b65eb16095ab8b22a8.zip |
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>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/settings/lib/SetupChecks/CheckUserCertificates.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/settings/lib/SetupChecks/CheckUserCertificates.php b/apps/settings/lib/SetupChecks/CheckUserCertificates.php index 5d58f61b675..909ba9e149b 100644 --- a/apps/settings/lib/SetupChecks/CheckUserCertificates.php +++ b/apps/settings/lib/SetupChecks/CheckUserCertificates.php @@ -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 { |