We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61700ec commit 2ce53a5Copy full SHA for 2ce53a5
lib/private/SystemConfig.php
@@ -38,6 +38,7 @@ class SystemConfig {
38
protected $sensitiveValues = [
39
'instanceid' => true,
40
'datadirectory' => true,
41
+ 'appdataroot' => true,
42
'dbname' => true,
43
'dbhost' => true,
44
'dbpassword' => true,
tests/lib/Files/AppData/AppDataTest.php
@@ -53,6 +53,11 @@ protected function setUp(): void {
53
->method('getValue')
54
->with('instanceid', null)
55
->willReturn('iid');
56
+
57
+ $this->systemConfig->expects($this->any())
58
+ ->method('getValue')
59
+ ->with('appdataroot', null)
60
+ ->willReturn('/path');
61
}
62
63
private function setupAppFolder() {
0 commit comments