]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Config/Cache.php
Merge pull request #10040 from annando/file-permissions
[friendica.git] / src / Core / Config / Cache.php
index b78b57f57de1dffd5c4f44c775bf6a1500b0d68a..25b25550e02182c748e3f1d76809a2bd464e54e4 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;