Skip to content

Commit 2ffd61d

Browse files
authored
.
1 parent c8655b2 commit 2ffd61d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/RedisSimpleLockFactoryTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class RedisSimpleLockFactoryTest extends TestCase
88
{
99
private $redisClient;
1010

11-
public function setUp()
11+
public function setUp(): void
1212
{
1313
$this->redisClient = new \Predis\Client(getenv('REDIS_URI'));
1414
$this->redisClient->flushdb();

tests/RedisSimpleLockTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class RedisSimpleLockTest extends TestCase
77
{
88
private $redisClient;
99

10-
public function setUp()
10+
public function setUp(): void
1111
{
1212
$this->redisClient = new \Predis\Client(getenv("REDIS_URI"));
1313
$this->redisClient->flushdb();

0 commit comments

Comments
 (0)