Skip to content

Commit

Permalink
update docblocks
Browse files Browse the repository at this point in the history
  • Loading branch information
joedixon committed Dec 29, 2023
1 parent b1cbb2c commit 1089c00
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Protocols/Pusher/Channels/Channel.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function name(): string
/**
* Get all connections for the channel.
*
* @return array<string, \Laravel\Reverb\Servers\Reverb\ChannelConnection>
* @return array<string, \Laravel\Reverb\Protocols\Pusher\Channels\ChannelConnection>
*/
public function connections(): array
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function findById(string $id): ?ChannelConnection;
/**
* Get all the connections.
*
* @return array<string, \Laravel\Reverb\Servers\Reverb\ChannelConnection>
* @return array<string, \Laravel\Reverb\Protocols\Pusher\Channels\ChannelConnection>
*/
public function all(): array;

Expand Down
2 changes: 1 addition & 1 deletion src/Protocols/Pusher/Contracts/ChannelManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function findOrCreate(string $channel): Channel;
/**
* Get all the connections for the given channels.
*
* @return array<string, \Laravel\Reverb\Servers\Reverb\ChannelConnection>
* @return array<string, \Laravel\Reverb\Protocols\Pusher\Channels\ChannelConnection>
*/
public function connections(?string $channel = null): array;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class ArrayChannelConnectionManager implements ChannelConnectionManager
/**
* Connection store.
*
* @var array<string, \Laravel\Reverb\Servers\Reverb\ChannelConnection>
* @var array<string, \Laravel\Reverb\Protocols\Pusher\Channels\ChannelConnection>
*/
protected $connections = [];

Expand Down Expand Up @@ -62,7 +62,7 @@ public function findById(string $id): ?ChannelConnection
/**
* Get all the connections.
*
* @return array<string, \Laravel\Reverb\Servers\Reverb\ChannelConnection>
* @return array<string, \Laravel\Reverb\Protocols\Pusher\Channels\ChannelConnection>
*/
public function all(): array
{
Expand Down
2 changes: 1 addition & 1 deletion src/Protocols/Pusher/Managers/ArrayChannelManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public function findOrCreate(string $channelName): Channel
/**
* Get all the connections for the given channels.
*
* @return array<string, \Laravel\Reverb\Servers\Reverb\ChannelConnection>
* @return array<string, \Laravel\Reverb\Protocols\Pusher\Channels\ChannelConnection>
*/
public function connections(?string $channel = null): array
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public function isEmpty(): bool
/**
* Get all the connections.
*
* @return array<string, \Laravel\Reverb\Servers\Reverb\ChannelConnection>
* @return array<string, \Laravel\Reverb\Protocols\Pusher\Channels\ChannelConnection>
*/
public function all(): array
{
Expand Down
2 changes: 1 addition & 1 deletion src/Protocols/Pusher/Managers/CacheChannelManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public function findOrCreate(string $channelName): Channel
/**
* Get all the connections for the given channels.
*
* @return array<string, \Laravel\Reverb\Servers\Reverb\ChannelConnection>
* @return array<string, \Laravel\Reverb\Protocols\Pusher\Channels\ChannelConnection>
*/
public function connections(?string $channel = null): array
{
Expand Down

0 comments on commit 1089c00

Please sign in to comment.