aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib/config.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_external/lib/config.php')
-rw-r--r--apps/files_external/lib/config.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php
index c69955c3406..745f2da6d5e 100644
--- a/apps/files_external/lib/config.php
+++ b/apps/files_external/lib/config.php
@@ -60,10 +60,10 @@ use phpseclib\Crypt\AES;
class OC_Mount_Config {
// TODO: make this class non-static and give it a proper namespace
- const MOUNT_TYPE_GLOBAL = 'global';
- const MOUNT_TYPE_GROUP = 'group';
- const MOUNT_TYPE_USER = 'user';
- const MOUNT_TYPE_PERSONAL = 'personal';
+ public const MOUNT_TYPE_GLOBAL = 'global';
+ public const MOUNT_TYPE_GROUP = 'group';
+ public const MOUNT_TYPE_USER = 'user';
+ public const MOUNT_TYPE_PERSONAL = 'personal';
// whether to skip backend test (for unit tests, as this static class is not mockable)
public static $skipTest = false;