akaunting/app/Providers/Broadcast.php

22 lines
380 B
PHP
Raw Normal View History

2017-09-14 22:21:00 +03:00
<?php
namespace App\Providers;
2019-11-16 10:21:14 +03:00
use Illuminate\Support\Facades\Broadcast as Facade;
use Illuminate\Support\ServiceProvider as Provider;
2017-09-14 22:21:00 +03:00
2019-11-16 10:21:14 +03:00
class Broadcast extends Provider
2017-09-14 22:21:00 +03:00
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
Broadcast::routes();
require base_path('routes/channels.php');
}
}