From 71eb8cfe99acd34710c81af3ac04660ed1df523f Mon Sep 17 00:00:00 2001 From: Amrouche Hamza Date: Tue, 25 Jun 2019 07:47:15 +0200 Subject: [PATCH] [Lock] fix missing inherit docs in RedisStore --- src/Symfony/Component/Lock/Store/RedisStore.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Symfony/Component/Lock/Store/RedisStore.php b/src/Symfony/Component/Lock/Store/RedisStore.php index 496ce65778..39360de45c 100644 --- a/src/Symfony/Component/Lock/Store/RedisStore.php +++ b/src/Symfony/Component/Lock/Store/RedisStore.php @@ -71,6 +71,9 @@ class RedisStore implements StoreInterface $this->checkNotExpired($key); } + /** + * {@inheritdoc} + */ public function waitAndSave(Key $key) { throw new InvalidArgumentException(sprintf('The store "%s" does not supports blocking locks.', \get_class($this)));