Skip to content

Commit

Permalink
Fix RedisStore constructor signature
Browse files Browse the repository at this point in the history
This is a fix for a regression from #37590
  • Loading branch information
b1rdex committed Jul 27, 2020
1 parent 26e443c commit 7005da0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Store/RedisStore.php
Expand Up @@ -33,8 +33,8 @@ class RedisStore implements StoreInterface
private $initialTtl;

/**
* @param \Redis|\RedisArray|\RedisCluster|RedisProxy|RedisClusterProxy\Predis\ClientInterface $redisClient
* @param float $initialTtl the expiration delay of locks in seconds
* @param \Redis|\RedisArray|\RedisCluster|RedisProxy|RedisClusterProxy|\Predis\ClientInterface $redisClient
* @param float $initialTtl the expiration delay of locks in seconds
*/
public function __construct($redisClient, float $initialTtl = 300.0)
{
Expand Down

0 comments on commit 7005da0

Please sign in to comment.