Skip to content

Commit

Permalink
create reverb driver (#50088)
Browse files Browse the repository at this point in the history
  • Loading branch information
joedixon authored Mar 5, 2024
1 parent 5050195 commit 5507a19
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/Illuminate/Broadcasting/BroadcastManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,17 @@ protected function callCustomCreator(array $config)
return $this->customCreators[$config['driver']]($this->app, $config);
}

/**
* Create an instance of the driver.
*
* @param array $config
* @return \Illuminate\Contracts\Broadcasting\Broadcaster
*/
protected function createReverbDriver(array $config)
{
return $this->createPusherDriver($config);
}

/**
* Create an instance of the driver.
*
Expand Down

0 comments on commit 5507a19

Please sign in to comment.