File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ class RedisSimpleLockFactoryTest extends TestCase
11
11
public function setUp (): void
12
12
{
13
13
$ uri = getenv ("REDIS_URI " );
14
- $ this ->redisClient = is_string ($ uri ) : new \Predis \Client($ uri ): new \Predis \Client ();
14
+ $ this ->redisClient = is_string ($ uri ) ? new \Predis \Client ($ uri ) : new \Predis \Client ();
15
15
$ this ->redisClient ->flushdb ();
16
16
}
17
17
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ class RedisSimpleLockTest extends TestCase
10
10
public function setUp (): void
11
11
{
12
12
$ uri = getenv ("REDIS_URI " );
13
- $ this ->redisClient = is_string ($ uri ) : new \Predis \Client($ uri ): new \Predis \Client ();
13
+ $ this ->redisClient = is_string ($ uri ) ? new \Predis \Client ($ uri ) : new \Predis \Client ();
14
14
$ this ->redisClient ->flushdb ();
15
15
}
16
16
You can’t perform that action at this time.
0 commit comments