Skip to content

Commit

Permalink
Revert bad change - config cannot contain objects
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell committed May 3, 2021
1 parent a6f6576 commit 819db15
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Illuminate/Broadcasting/BroadcastManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,7 @@ protected function createPusherDriver(array $config)
{
$pusher = new Pusher(
$config['key'], $config['secret'],
$config['app_id'], $config['options'] ?? [],
$config['guzzle'] ?? null
$config['app_id'], $config['options'] ?? []
);

if ($config['log'] ?? false) {
Expand Down

0 comments on commit 819db15

Please sign in to comment.