PHP Classes

File: server/app/Providers/BroadcastServiceProvider.php

Recommend this page to a friend!
  Classes of mohammad anzawi   PHP Wallet API and Application   server/app/Providers/BroadcastServiceProvider.php   Download  
File: server/app/Providers/BroadcastServiceProvider.php
Role: Class source
Content type: text/plain
Description: Class source
Class: PHP Wallet API and Application
Application to manage a wallet by calling an API
Author: By
Last change:
Date: 2 years ago
Size: 380 bytes
 

Contents

Class file image Download
<?php

namespace App\Providers;

use
Illuminate\Support\Facades\Broadcast;
use
Illuminate\Support\ServiceProvider;

class
BroadcastServiceProvider extends ServiceProvider
{
   
/**
     * Bootstrap any application services.
     *
     * @return void
     */
   
public function boot()
    {
       
Broadcast::routes();

        require
base_path('routes/channels.php');
    }
}