Skip to content

Commit 560f736

Browse files
committed
fix: incompatible overwrite for AppConfig
Signed-off-by: Anna Larch <anna@nextcloud.com>
1 parent b32abf3 commit 560f736

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/AppConfigOverwrite.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function setOverwrite(array $overwrite): void {
1919
$this->overWrite = $overwrite;
2020
}
2121

22-
public function getValue(string $app, string $key, ?string $default = null): string {
22+
public function getValue($app, $key, $default = null) {
2323
if (isset($this->overWrite[$app]) && isset($this->overWrite[$app][$key])) {
2424
return $this->overWrite[$app][$key];
2525
}

0 commit comments

Comments
 (0)