1
0
Fork 0
mirror of https://github.com/prurigro/hypothetical.git synced 2025-01-12 09:31:01 -05:00
hypothetical/app/Providers/BroadcastServiceProvider.php
2017-01-26 19:17:37 -05:00

21 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');
}
}