Skip to content

Commit 5507a19

Browse files
authored
create reverb driver (#50088)
1 parent 5050195 commit 5507a19

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/Illuminate/Broadcasting/BroadcastManager.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,17 @@ protected function callCustomCreator(array $config)
273273
return $this->customCreators[$config['driver']]($this->app, $config);
274274
}
275275

276+
/**
277+
* Create an instance of the driver.
278+
*
279+
* @param array $config
280+
* @return \Illuminate\Contracts\Broadcasting\Broadcaster
281+
*/
282+
protected function createReverbDriver(array $config)
283+
{
284+
return $this->createPusherDriver($config);
285+
}
286+
276287
/**
277288
* Create an instance of the driver.
278289
*

0 commit comments

Comments
 (0)