@@ -46,25 +46,6 @@ class Cache extends BaseConfig
46
46
*/
47
47
public string $ storePath = WRITEPATH . 'cache/ ' ;
48
48
49
- /**
50
- * --------------------------------------------------------------------------
51
- * Cache Include Query String
52
- * --------------------------------------------------------------------------
53
- *
54
- * Whether to take the URL query string into consideration when generating
55
- * output cache files. Valid options are:
56
- *
57
- * false = Disabled
58
- * true = Enabled, take all query parameters into account.
59
- * Please be aware that this may result in numerous cache
60
- * files generated for the same page over and over again.
61
- * ['q'] = Enabled, but only take into account the specified list
62
- * of query parameters.
63
- *
64
- * @var bool|list<string>
65
- */
66
- public $ cacheQueryString = false ;
67
-
68
49
/**
69
50
* --------------------------------------------------------------------------
70
51
* Key Prefix
@@ -169,6 +150,25 @@ class Cache extends BaseConfig
169
150
'wincache ' => WincacheHandler::class,
170
151
];
171
152
153
+ /**
154
+ * --------------------------------------------------------------------------
155
+ * Web Page Caching: Cache Include Query String
156
+ * --------------------------------------------------------------------------
157
+ *
158
+ * Whether to take the URL query string into consideration when generating
159
+ * output cache files. Valid options are:
160
+ *
161
+ * false = Disabled
162
+ * true = Enabled, take all query parameters into account.
163
+ * Please be aware that this may result in numerous cache
164
+ * files generated for the same page over and over again.
165
+ * ['q'] = Enabled, but only take into account the specified list
166
+ * of query parameters.
167
+ *
168
+ * @var bool|list<string>
169
+ */
170
+ public $ cacheQueryString = false ;
171
+
172
172
/**
173
173
* --------------------------------------------------------------------------
174
174
* Config Caching
0 commit comments