1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2024-11-25 03:43:33 +01:00
freescout/app/Providers/BroadcastServiceProvider.php

22 lines
380 B
PHP
Raw Normal View History

2018-06-22 19:44:21 +02:00
<?php
namespace App\Providers;
use Illuminate\Support\Facades\Broadcast;
2018-07-24 08:34:28 +02:00
use Illuminate\Support\ServiceProvider;
2018-06-22 19:44:21 +02:00
class BroadcastServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
Broadcast::routes();
require base_path('routes/channels.php');
}
}