From 12a897499e5c45a81677432167f6918c9c1713cf Mon Sep 17 00:00:00 2001 From: Nikita Bolotov Date: Fri, 7 Jun 2024 17:15:42 +0300 Subject: [PATCH] MessageQueueCollector return type --- pkg/enqueue-bundle/Profiler/MessageQueueCollector.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/enqueue-bundle/Profiler/MessageQueueCollector.php b/pkg/enqueue-bundle/Profiler/MessageQueueCollector.php index 7fc6699c5..d11b221ee 100644 --- a/pkg/enqueue-bundle/Profiler/MessageQueueCollector.php +++ b/pkg/enqueue-bundle/Profiler/MessageQueueCollector.php @@ -8,7 +8,7 @@ class MessageQueueCollector extends AbstractMessageQueueCollector { - public function collect(Request $request, Response $response, Throwable $exception = null) + public function collect(Request $request, Response $response, Throwable $exception = null): void { $this->collectInternal($request, $response); }