@@ -162,7 +162,7 @@ final public function testDifferentCleaning()
162
162
final public function testSpecialChars ()
163
163
{
164
164
$ this ->journal ->write ('ok_test7ščřžýáíé ' , [
165
- Cache::TAGS => ['čšřýýá ' , 'ýřžčýž ' ]
165
+ Cache::TAGS => ['čšřýýá ' , 'ýřžčýž ' ],
166
166
]);
167
167
168
168
Assert::same ([
@@ -174,10 +174,10 @@ final public function testSpecialChars()
174
174
final public function testDuplicatedSameTags ()
175
175
{
176
176
$ this ->journal ->write ('ok_test_a ' , [
177
- Cache::TAGS => ['homepage ' ]
177
+ Cache::TAGS => ['homepage ' ],
178
178
]);
179
179
$ this ->journal ->write ('ok_test_a ' , [
180
- Cache::TAGS => ['homepage ' ]
180
+ Cache::TAGS => ['homepage ' ],
181
181
]);
182
182
Assert::same ([
183
183
'ok_test_a ' ,
@@ -188,11 +188,11 @@ final public function testDuplicatedSameTags()
188
188
final public function testDuplicatedSamePriority ()
189
189
{
190
190
$ this ->journal ->write ('ok_test_b ' , [
191
- Cache::PRIORITY => 12
191
+ Cache::PRIORITY => 12 ,
192
192
]);
193
193
194
194
$ this ->journal ->write ('ok_test_b ' , [
195
- Cache::PRIORITY => 12
195
+ Cache::PRIORITY => 12 ,
196
196
]);
197
197
198
198
Assert::same ([
@@ -204,11 +204,11 @@ final public function testDuplicatedSamePriority()
204
204
final public function testDuplicatedDifferentTags ()
205
205
{
206
206
$ this ->journal ->write ('ok_test_ba ' , [
207
- Cache::TAGS => ['homepage ' ]
207
+ Cache::TAGS => ['homepage ' ],
208
208
]);
209
209
210
210
$ this ->journal ->write ('ok_test_ba ' , [
211
- Cache::TAGS => ['homepage2 ' ]
211
+ Cache::TAGS => ['homepage2 ' ],
212
212
]);
213
213
214
214
Assert::same ([
@@ -223,11 +223,11 @@ final public function testDuplicatedDifferentTags()
223
223
final public function testDuplicatedTwoDifferentTags ()
224
224
{
225
225
$ this ->journal ->write ('ok_test_baa ' , [
226
- Cache::TAGS => ['homepage ' , 'aąa ' ]
226
+ Cache::TAGS => ['homepage ' , 'aąa ' ],
227
227
]);
228
228
229
229
$ this ->journal ->write ('ok_test_baa ' , [
230
- Cache::TAGS => ['homepage2 ' , 'aaa ' ]
230
+ Cache::TAGS => ['homepage2 ' , 'aaa ' ],
231
231
]);
232
232
233
233
Assert::same ([
@@ -242,11 +242,11 @@ final public function testDuplicatedTwoDifferentTags()
242
242
final public function testDuplicatedDifferentPriorities ()
243
243
{
244
244
$ this ->journal ->write ('ok_test_bb ' , [
245
- Cache::PRIORITY => 10
245
+ Cache::PRIORITY => 10 ,
246
246
]);
247
247
248
248
$ this ->journal ->write ('ok_test_bb ' , [
249
- Cache::PRIORITY => 20
249
+ Cache::PRIORITY => 20 ,
250
250
]);
251
251
252
252
Assert::same ([
@@ -261,7 +261,7 @@ final public function testDuplicatedDifferentPriorities()
261
261
final public function testCleanAll ()
262
262
{
263
263
$ this ->journal ->write ('ok_test_all_tags ' , [
264
- Cache::TAGS => ['test:all ' , 'test:all ' ]
264
+ Cache::TAGS => ['test:all ' , 'test:all ' ],
265
265
]);
266
266
267
267
$ this ->journal ->write ('ok_test_all_priority ' , [
0 commit comments