This repository has been archived on 2021-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
questcequonmange/app/Providers/BroadcastServiceProvider.php
2019-05-13 00:35:06 +02:00

22 lines
380 B
PHP

<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Facades\Broadcast;
class BroadcastServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
Broadcast::routes();
require base_path('routes/channels.php');
}
}