Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 84a4c4d

Browse files
committed
minor #37675 Fix RedisStore constructor signature (b1rdex)
This PR was merged into the 4.4 branch. Discussion ---------- Fix RedisStore constructor signature | Q | A | ------------- | --- | Branch? | 4.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Tickets | no | License | MIT | Doc PR | no This is a fix for a regression from #37590 Commits ------- 6831271 Fix RedisStore constructor signature
2 parents f3cfae8 + 6831271 commit 84a4c4d

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
@@ -33,8 +33,8 @@ class RedisStore implements StoreInterface
3333
private $initialTtl;
3434

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

0 commit comments

Comments
 (0)