From f90b3df8f40616aa6939c883b29a978ae5d4a268 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Thu, 7 Nov 2024 07:38:18 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/Provider/QueueProviderInterface.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Provider/QueueProviderInterface.php b/src/Provider/QueueProviderInterface.php index a02cd42b..7d3501b7 100644 --- a/src/Provider/QueueProviderInterface.php +++ b/src/Provider/QueueProviderInterface.php @@ -16,11 +16,10 @@ interface QueueProviderInterface * * @param string $channel Channel name. * - * @return QueueInterface Queue instance. - * * @throws InvalidQueueConfigException If the queue configuration is invalid. * @throws ChannelNotFoundException If the channel is not found. * @throws QueueProviderException If the queue provider fails to provide a queue. + * @return QueueInterface Queue instance. */ public function get(string $channel): QueueInterface;