Skip to content

Commit

Permalink
Fix code styling
Browse files Browse the repository at this point in the history
  • Loading branch information
joedixon authored and github-actions[bot] committed Nov 20, 2023
1 parent 5a503bb commit 3422643
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Channels/Channel.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,13 @@ public function broadcast(Application $app, array $payload, Connection $except =
{
dump($except ? $except->identifier() : 'No ID');
dump($this->name());
dump(count($this->connections()));
dump(count($this->connections()));
collect($this->connections())
->each(function ($connection) use ($payload, $except) {
dump($connection->connection()->identifier());
if ($except && $except->identifier() === $connection->connection()->identifier()) {
dump('Returning early');

return;
}

Expand Down

0 comments on commit 3422643

Please sign in to comment.