Introduce "static/env.config.php" for environment variable mapping to config cache...
[friendica.git/.git] / src / Core / Config / Cache.php
index b78b57f..25b2555 100644 (file)
@@ -36,6 +36,8 @@ class Cache
        const SOURCE_DB = 1;
        /** @var int Indicates that the cache entry is set by a server environment variable - High Priority */
        const SOURCE_ENV = 3;
+       /** @var int Indicates that the cache entry is fixed and must not be changed */
+       const SOURCE_FIX = 4;
 
        /** @var int Default value for a config source */
        const SOURCE_DEFAULT = self::SOURCE_FILE;