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 {