From 1089c00dc8d4ac8958b65693d2f761b11e75a110 Mon Sep 17 00:00:00 2001 From: Joe Dixon Date: Fri, 29 Dec 2023 16:12:21 +0000 Subject: [PATCH] update docblocks --- src/Protocols/Pusher/Channels/Channel.php | 2 +- src/Protocols/Pusher/Contracts/ChannelConnectionManager.php | 2 +- src/Protocols/Pusher/Contracts/ChannelManager.php | 2 +- .../Pusher/Managers/ArrayChannelConnectionManager.php | 4 ++-- src/Protocols/Pusher/Managers/ArrayChannelManager.php | 2 +- .../Pusher/Managers/CacheChannelConnectionManager.php | 2 +- src/Protocols/Pusher/Managers/CacheChannelManager.php | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Protocols/Pusher/Channels/Channel.php b/src/Protocols/Pusher/Channels/Channel.php index 6a46d49f..4d6c75aa 100644 --- a/src/Protocols/Pusher/Channels/Channel.php +++ b/src/Protocols/Pusher/Channels/Channel.php @@ -37,7 +37,7 @@ public function name(): string /** * Get all connections for the channel. * - * @return array + * @return array */ public function connections(): array { diff --git a/src/Protocols/Pusher/Contracts/ChannelConnectionManager.php b/src/Protocols/Pusher/Contracts/ChannelConnectionManager.php index 0b877e62..54ccbcf2 100644 --- a/src/Protocols/Pusher/Contracts/ChannelConnectionManager.php +++ b/src/Protocols/Pusher/Contracts/ChannelConnectionManager.php @@ -35,7 +35,7 @@ public function findById(string $id): ?ChannelConnection; /** * Get all the connections. * - * @return array + * @return array */ public function all(): array; diff --git a/src/Protocols/Pusher/Contracts/ChannelManager.php b/src/Protocols/Pusher/Contracts/ChannelManager.php index 5ca206a7..0b76e9cb 100644 --- a/src/Protocols/Pusher/Contracts/ChannelManager.php +++ b/src/Protocols/Pusher/Contracts/ChannelManager.php @@ -38,7 +38,7 @@ public function findOrCreate(string $channel): Channel; /** * Get all the connections for the given channels. * - * @return array + * @return array */ public function connections(?string $channel = null): array; diff --git a/src/Protocols/Pusher/Managers/ArrayChannelConnectionManager.php b/src/Protocols/Pusher/Managers/ArrayChannelConnectionManager.php index 6b50b0ab..6658e5b3 100644 --- a/src/Protocols/Pusher/Managers/ArrayChannelConnectionManager.php +++ b/src/Protocols/Pusher/Managers/ArrayChannelConnectionManager.php @@ -13,7 +13,7 @@ class ArrayChannelConnectionManager implements ChannelConnectionManager /** * Connection store. * - * @var array + * @var array */ protected $connections = []; @@ -62,7 +62,7 @@ public function findById(string $id): ?ChannelConnection /** * Get all the connections. * - * @return array + * @return array */ public function all(): array { diff --git a/src/Protocols/Pusher/Managers/ArrayChannelManager.php b/src/Protocols/Pusher/Managers/ArrayChannelManager.php index fc2e8634..9af5c37f 100644 --- a/src/Protocols/Pusher/Managers/ArrayChannelManager.php +++ b/src/Protocols/Pusher/Managers/ArrayChannelManager.php @@ -74,7 +74,7 @@ public function findOrCreate(string $channelName): Channel /** * Get all the connections for the given channels. * - * @return array + * @return array */ public function connections(?string $channel = null): array { diff --git a/src/Protocols/Pusher/Managers/CacheChannelConnectionManager.php b/src/Protocols/Pusher/Managers/CacheChannelConnectionManager.php index 77da6d1f..29fdfb21 100644 --- a/src/Protocols/Pusher/Managers/CacheChannelConnectionManager.php +++ b/src/Protocols/Pusher/Managers/CacheChannelConnectionManager.php @@ -101,7 +101,7 @@ public function isEmpty(): bool /** * Get all the connections. * - * @return array + * @return array */ public function all(): array { diff --git a/src/Protocols/Pusher/Managers/CacheChannelManager.php b/src/Protocols/Pusher/Managers/CacheChannelManager.php index b3d3a4d6..83de7b73 100644 --- a/src/Protocols/Pusher/Managers/CacheChannelManager.php +++ b/src/Protocols/Pusher/Managers/CacheChannelManager.php @@ -76,7 +76,7 @@ public function findOrCreate(string $channelName): Channel /** * Get all the connections for the given channels. * - * @return array + * @return array */ public function connections(?string $channel = null): array {