We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 928d30f commit 9b97007Copy full SHA for 9b97007
tests/Integration/Cache/RedisStoreTest.php
@@ -80,10 +80,10 @@ public function testItCanExpireWithZeroTTL()
80
{
81
Cache::store('redis')->clear();
82
83
- $result = Cache::store('redis')->put('foo', 10,10);
+ $result = Cache::store('redis')->put('foo', 10, 10);
84
$this->assertTrue($result);
85
86
- $result = Cache::store('redis')->put('foo', 10,0);
+ $result = Cache::store('redis')->put('foo', 10, 0);
87
88
89
$value = Cache::store('redis')->get('foo');
0 commit comments