10000 Fix RedisStore constructor signature · b1rdex/symfony@dc133ef · GitHub
[go: up one dir, main page]

Skip to content

Commit dc133ef

Browse files
authored
Fix RedisStore constructor signature
This is a fix for a regression from symfony#37590
1 parent 0ab5eed commit dc133ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Component/Lock/Store/RedisStore.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ class RedisStore implements PersistingStoreInterface
3232
private $initialTtl;
3333

3434
/**
35-
* @param \Redis|\RedisArray|\RedisCluster|RedisProxy|RedisClusterProxy\Predis\ClientInterface $redisClient
36-
* @param float $initialTtl the expiration delay of locks in seconds
35+
* @param \Redis|\RedisArray|\RedisCluster|RedisProxy|RedisClusterProxy|\Predis\ClientInterface $redisClient
36+
* @param float $initialTtl the expiration delay of locks in seconds
3737
*/
3838
public function __construct($redisClient, float $initialTtl = 300.0)
3939
{

0 commit comments

Comments
 (0)
0