From 7f151c6eacdacf9824ca5487c142c387bf2f5f7d Mon Sep 17 00:00:00 2001 From: pavdovlatov <129055488+pavdovlatov@users.noreply.github.com> Date: Wed, 20 Dec 2023 13:21:36 +0300 Subject: [PATCH] Fixed PHPDoc return typehint in BatchConsumerInterface::batchExecute() (#722) Co-authored-by: Pavel Dovlatov --- RabbitMq/BatchConsumerInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RabbitMq/BatchConsumerInterface.php b/RabbitMq/BatchConsumerInterface.php index 0b9ec585..577365c2 100644 --- a/RabbitMq/BatchConsumerInterface.php +++ b/RabbitMq/BatchConsumerInterface.php @@ -9,7 +9,7 @@ interface BatchConsumerInterface /** * @param AMQPMessage[] $messages * - * @return array|bool + * @return array|int|bool */ public function batchExecute(array $messages); }