Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Mar 4, 2024
1 parent 928d30f commit 9b97007
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Integration/Cache/RedisStoreTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ public function testItCanExpireWithZeroTTL()
{
Cache::store('redis')->clear();

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

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

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

0 comments on commit 9b97007

Please sign in to comment.