@@ -164,7 +164,7 @@ final public function testDifferentCleaning()
164164 final public function testSpecialChars ()
165165 {
166166 $ this ->journal ->write ('ok_test7ščřžýáíé ' , [
167- Cache::TAGS => ['čšřýýá ' , 'ýřžčýž ' ]
167+ Cache::TAGS => ['čšřýýá ' , 'ýřžčýž ' ],
168168 ]);
169169
170170 Assert::same ([
@@ -176,10 +176,10 @@ final public function testSpecialChars()
176176 final public function testDuplicatedSameTags ()
177177 {
178178 $ this ->journal ->write ('ok_test_a ' , [
179- Cache::TAGS => ['homepage ' ]
179+ Cache::TAGS => ['homepage ' ],
180180 ]);
181181 $ this ->journal ->write ('ok_test_a ' , [
182- Cache::TAGS => ['homepage ' ]
182+ Cache::TAGS => ['homepage ' ],
183183 ]);
184184 Assert::same ([
185185 'ok_test_a ' ,
@@ -190,11 +190,11 @@ final public function testDuplicatedSameTags()
190190 final public function testDuplicatedSamePriority ()
191191 {
192192 $ this ->journal ->write ('ok_test_b ' , [
193- Cache::PRIORITY => 12
193+ Cache::PRIORITY => 12 ,
194194 ]);
195195
196196 $ this ->journal ->write ('ok_test_b ' , [
197- Cache::PRIORITY => 12
197+ Cache::PRIORITY => 12 ,
198198 ]);
199199
200200 Assert::same ([
@@ -206,11 +206,11 @@ final public function testDuplicatedSamePriority()
206206 final public function testDuplicatedDifferentTags ()
207207 {
208208 $ this ->journal ->write ('ok_test_ba ' , [
209- Cache::TAGS => ['homepage ' ]
209+ Cache::TAGS => ['homepage ' ],
210210 ]);
211211
212212 $ this ->journal ->write ('ok_test_ba ' , [
213- Cache::TAGS => ['homepage2 ' ]
213+ Cache::TAGS => ['homepage2 ' ],
214214 ]);
215215
216216 Assert::same ([
@@ -225,11 +225,11 @@ final public function testDuplicatedDifferentTags()
225225 final public function testDuplicatedTwoDifferentTags ()
226226 {
227227 $ this ->journal ->write ('ok_test_baa ' , [
228- Cache::TAGS => ['homepage ' , 'aąa ' ]
228+ Cache::TAGS => ['homepage ' , 'aąa ' ],
229229 ]);
230230
231231 $ this ->journal ->write ('ok_test_baa ' , [
232- Cache::TAGS => ['homepage2 ' , 'aaa ' ]
232+ Cache::TAGS => ['homepage2 ' , 'aaa ' ],
233233 ]);
234234
235235 Assert::same ([
@@ -244,11 +244,11 @@ final public function testDuplicatedTwoDifferentTags()
244244 final public function testDuplicatedDifferentPriorities ()
245245 {
246246 $ this ->journal ->write ('ok_test_bb ' , [
247- Cache::PRIORITY => 10
247+ Cache::PRIORITY => 10 ,
248248 ]);
249249
250250 $ this ->journal ->write ('ok_test_bb ' , [
251- Cache::PRIORITY => 20
251+ Cache::PRIORITY => 20 ,
252252 ]);
253253
254254 Assert::same ([
@@ -263,7 +263,7 @@ final public function testDuplicatedDifferentPriorities()
263263 final public function testCleanAll ()
264264 {
265265 $ this ->journal ->write ('ok_test_all_tags ' , [
266- Cache::TAGS => ['test:all ' , 'test:all ' ]
266+ Cache::TAGS => ['test:all ' , 'test:all ' ],
267267 ]);
268268
269269 $ this ->journal ->write ('ok_test_all_priority ' , [
0 commit comments