for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Install GitHub App
<?php
namespace DoeSangue\Providers;
use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Facades\Broadcast;
class BroadcastServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*/
public function boot()
Broadcast::routes();
require base_path('routes/channels.php');
/*
* Authenticate the user's personal channel...
Broadcast::channel(
'App.User.*', function ($user, $userId) {
return (int) $user->id === (int) $userId;
}
);*/