From 28c9398abac179b7c084c9cbfed87d18529c1e1d Mon Sep 17 00:00:00 2001 From: David Bomba Date: Tue, 21 Mar 2023 07:06:16 +1100 Subject: [PATCH] Set sane defaults for broadcasting driver --- config/broadcasting.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/broadcasting.php b/config/broadcasting.php index 3d0c7cae8053..30f98d504181 100644 --- a/config/broadcasting.php +++ b/config/broadcasting.php @@ -32,9 +32,9 @@ return [ 'pusher' => [ 'driver' => 'pusher', - 'key' => env('PUSHER_APP_KEY'), - 'secret' => env('PUSHER_APP_SECRET'), - 'app_id' => env('PUSHER_APP_ID'), + 'key' => env('PUSHER_APP_KEY',''), + 'secret' => env('PUSHER_APP_SECRET',''), + 'app_id' => env('PUSHER_APP_ID',''), 'options' => [ 'host' => env('PUSHER_HOST', 'api-'.env('PUSHER_APP_CLUSTER', 'mt1').'.pusher.com'), 'port' => env('PUSHER_PORT', 443),