1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-05-06 21:04:06 +00:00

Remove unused $broadcaster parameter

This commit is contained in:
lukinovec 2026-04-13 15:32:26 +02:00
parent 9ab0a729d6
commit 4aeaa66b23

View file

@ -93,7 +93,7 @@ class BroadcastingConfigBootstrapper implements TenancyBootstrapper
// used by the bound Broadcaster instance. If you need to e.g. send a notification in response to // used by the bound Broadcaster instance. If you need to e.g. send a notification in response to
// updating tenant's broadcasting credentials in tenant context, it's recommended to // updating tenant's broadcasting credentials in tenant context, it's recommended to
// reinitialize tenancy after updating the credentials. // reinitialize tenancy after updating the credentials.
$this->app->extend(Broadcaster::class, function (Broadcaster $broadcaster) { $this->app->extend(Broadcaster::class, function () {
return $this->app->make(BroadcastManager::class)->connection(); return $this->app->make(BroadcastManager::class)->connection();
}); });