From 4bfed3310c43ca4fab147bb06687ddb2b8ec007e Mon Sep 17 00:00:00 2001 From: Alex Renoki Date: Mon, 24 Aug 2020 09:10:50 +0300 Subject: [PATCH] removed trailing comma --- src/Contracts/PushesToPusher.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Contracts/PushesToPusher.php b/src/Contracts/PushesToPusher.php index 0a3b092..4c160b3 100644 --- a/src/Contracts/PushesToPusher.php +++ b/src/Contracts/PushesToPusher.php @@ -26,7 +26,7 @@ trait PushesToPusher } return new PusherBroadcaster( - new Pusher($app['key'], $app['secret'], $app['id'], config('broadcasting.connections.pusher.options', [])), + new Pusher($app['key'], $app['secret'], $app['id'], config('broadcasting.connections.pusher.options', [])) ); } }