1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-09 20:52:56 +01:00

dynamically load broadcaster

This commit is contained in:
David Bomba 2023-03-24 14:03:58 +11:00
parent c7764f296e
commit 01404a75f6
2 changed files with 8 additions and 1 deletions

View File

@ -121,4 +121,11 @@ class AppServiceProvider extends ServiceProvider
Artisan::call('db:seed');
});
}
public function register(): void
{
$this->app->register(\App\Providers\BroadcastServiceProvider::class);
}
}

View File

@ -194,7 +194,7 @@ return [
*/
App\Providers\AppServiceProvider::class,
App\Providers\AuthServiceProvider::class,
App\Providers\BroadcastServiceProvider::class,
// App\Providers\BroadcastServiceProvider::class,
App\Providers\EventServiceProvider::class,
App\Providers\RouteServiceProvider::class,
App\Providers\ComposerServiceProvider::class,