diff --git a/src/Protocols/Pusher/Contracts/ChannelManager.php b/src/Protocols/Pusher/Contracts/ChannelManager.php index 192539f0..c4c7b2ed 100644 --- a/src/Protocols/Pusher/Contracts/ChannelManager.php +++ b/src/Protocols/Pusher/Contracts/ChannelManager.php @@ -31,7 +31,7 @@ public function all(): array; public function find(string $channel): ?Channel; /** - * Determine whether the channel exists. + * Determine whether the given channel exists. */ public function exists(string $channel): bool; diff --git a/src/Protocols/Pusher/Managers/ArrayChannelManager.php b/src/Protocols/Pusher/Managers/ArrayChannelManager.php index e538d9df..18d4be28 100644 --- a/src/Protocols/Pusher/Managers/ArrayChannelManager.php +++ b/src/Protocols/Pusher/Managers/ArrayChannelManager.php @@ -56,7 +56,7 @@ public function find(string $channel): ?Channel } /** - * Determine whether the channel exists. + * Determine whether the given channel exists. */ public function exists(string $channel): bool {