pixelfed/app/Providers/BroadcastServiceProvider.php

22 wiersze
380 B
PHP
Czysty Zwykły widok Historia

2018-04-15 23:56:48 +00:00
<?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');
}
}