Skip to content

Commit 1116c9d

Browse files
committed
Re-ordered option in cache manager
1 parent c89db45 commit 1116c9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/phpFastCache/CacheManager.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ class CacheManager
5252
* @var array
5353
*/
5454
protected static $config = [
55-
'default_chmod' => 0777, // 0777 recommended
56-
'fallback' => false, //Fall back when old driver is not support
5755
'securityKey' => 'auto',// The securityKey that will be used to create sub-directory
5856
'htaccess' => true,// Auto-generate .htaccess if tit is missing
57+
'default_chmod' => 0777, // 0777 recommended
5958
'path' => '',// if not set will be the value of sys_get_temp_dir()
59+
'fallback' => false, //Fall back when old driver is not support
6060
"limited_memory_each_object" => 4096, // maximum size (bytes) of object store in memory
6161
"compress_data" => false, // compress stored data, if the backend supports it
6262
];

0 commit comments

Comments
 (0)