From 0dc2db12c43a344249149f26815f20edf96ff421 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20B=C3=BChler?= Date: Thu, 4 Mar 2021 09:05:48 +0100 Subject: [PATCH] style fix --- src/ChannelManagers/LocalChannelManager.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ChannelManagers/LocalChannelManager.php b/src/ChannelManagers/LocalChannelManager.php index fd824bc169..3cacbf4f17 100644 --- a/src/ChannelManagers/LocalChannelManager.php +++ b/src/ChannelManagers/LocalChannelManager.php @@ -174,9 +174,9 @@ public function unsubscribeFromAllChannels(ConnectionInterface $connection): Pro $this->getLocalChannels($connection->app->id) ->then(function ($channels) use ($connection) { collect($channels) - ->each(function (Channel $channel) use ($connection) { - $channel->unsubscribe($connection); - }); + ->each(function (Channel $channel) use ($connection) { + $channel->unsubscribe($connection); + }); collect($channels) ->reject->hasConnections()