You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/private/Config.php
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,23 @@
16
16
*/
17
17
class Config {
18
18
publicconstENV_PREFIX = 'NC_';
19
+
publicconstCONF_WARNING = "
20
+
/*
21
+
* WARNING
22
+
*
23
+
* This file gets modified by automatic processes and all lines that are not
24
+
* active code (ie. comments) are lost during that process.
25
+
*
26
+
* If you want to document things with comments or use constants add your settings
27
+
* in a '<NAME>.config.php' file which will be included and rendered into this file.
28
+
*
29
+
* Example:
30
+
* <?php
31
+
* \$CONFIG = [];
32
+
*
33
+
* See also: https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/config_sample_php_parameters.html#multiple-merged-configuration-files
34
+
*/
35
+
";
19
36
20
37
protectedarray$cache = [];
21
38
protectedarray$envCache = [];
@@ -269,6 +286,7 @@ private function writeData(): void {
0 commit comments