We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5050195 commit 5507a19Copy full SHA for 5507a19
src/Illuminate/Broadcasting/BroadcastManager.php
@@ -273,6 +273,17 @@ protected function callCustomCreator(array $config)
273
return $this->customCreators[$config['driver']]($this->app, $config);
274
}
275
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
+
287
/**
288
* Create an instance of the driver.
289
*
0 commit comments