From 6cf726cb4b42c7758626d91093610dbb672d83eb Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Thu, 12 Dec 2024 19:38:20 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/Provider/QueueProviderInterface.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Provider/QueueProviderInterface.php b/src/Provider/QueueProviderInterface.php index 2e67a2f1..d833a84b 100644 --- a/src/Provider/QueueProviderInterface.php +++ b/src/Provider/QueueProviderInterface.php @@ -15,7 +15,7 @@ interface QueueProviderInterface /** * Find a queue by channel name and returns it. * - * @param string|BackedEnum $channel Channel name. + * @param BackedEnum|string $channel Channel name. * * @throws InvalidQueueConfigException If the queue configuration is invalid. * @throws ChannelNotFoundException If the channel is not found. @@ -27,7 +27,7 @@ public function get(string|BackedEnum $channel): QueueInterface; /** * Check if a queue with the specified channel name exists. * - * @param string|BackedEnum $channel Channel name. + * @param BackedEnum|string $channel Channel name. * * @return bool Whether the queue exists. */