From a8986260e4c6eba4401229eb48a0e517b72f3f9d Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Tue, 14 Apr 2020 13:47:15 +0200 Subject: [PATCH] Fix exception again.. --- .../Component/Messenger/Transport/RedisExt/Connection.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Messenger/Transport/RedisExt/Connection.php b/src/Symfony/Component/Messenger/Transport/RedisExt/Connection.php index baeaf23e0944f..bb818512c2fda 100644 --- a/src/Symfony/Component/Messenger/Transport/RedisExt/Connection.php +++ b/src/Symfony/Component/Messenger/Transport/RedisExt/Connection.php @@ -65,7 +65,7 @@ public function __construct(array $configuration, array $connectionCredentials = foreach (['stream', 'group', 'consumer'] as $key) { if (isset($configuration[$key]) && '' === $configuration[$key]) { - throw new InvalidArgumentException(sprintf('"%s" should be configured, got an empty string', $key)); + throw new InvalidArgumentException(sprintf('"%s" should be configured, got an empty string.', $key)); } }