fixed more indentations

This commit is contained in:
Jonathan Treffler 2025-07-02 14:46:05 +02:00
parent acf8990de1
commit f031591753
9 changed files with 148 additions and 148 deletions

View file

@ -28,7 +28,7 @@ class SettingsService {
}
}
public function setAppValue(string $key, string $value): string {
public function setAppValue(string $key, string $value): string {
if(in_array($key, self::$VALID_APP_SETTINGS)) {
if($value !== '') {
$this->config->setAppValue(Application::APP_ID, $key, $value);
@ -38,5 +38,5 @@ class SettingsService {
return $value;
}
}
}
}