Akaunting/app/Providers/Broadcast.php

21 lines
328 B
PHP
Raw Normal View History

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