Skip to content

Commit 9b97007

Browse files
committed
Apply fixes from StyleCI
1 parent 928d30f commit 9b97007

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Integration/Cache/RedisStoreTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@ public function testItCanExpireWithZeroTTL()
8080
{
8181
Cache::store('redis')->clear();
8282

83-
$result = Cache::store('redis')->put('foo', 10,10);
83+
$result = Cache::store('redis')->put('foo', 10, 10);
8484
$this->assertTrue($result);
8585

86-
$result = Cache::store('redis')->put('foo', 10,0);
86+
$result = Cache::store('redis')->put('foo', 10, 0);
8787
$this->assertTrue($result);
8888

8989
$value = Cache::store('redis')->get('foo');

0 commit comments

Comments
 (0)