From 6831271febc9fe3cad4a5cb9f92a60e252f68b76 Mon Sep 17 00:00:00 2001 From: Anatoly Pashin Date: Mon, 27 Jul 2020 11:39:16 +1000 Subject: [PATCH] Fix RedisStore constructor signature This is a fix for a regression from #37590 --- src/Symfony/Component/Lock/Store/RedisStore.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/Lock/Store/RedisStore.php b/src/Symfony/Component/Lock/Store/RedisStore.php index 21d7116766cc8..1f687e484b75e 100644 --- a/src/Symfony/Component/Lock/Store/RedisStore.php +++ b/src/Symfony/Component/Lock/Store/RedisStore.php @@ -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) {