We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
13 | public function boot() |
||
14 | { |
||
15 | Broadcast::routes(); |
||
16 | |||
17 | require base_path('routes/channels.php'); |
||
18 | |||
19 | /* |
||
20 | * Authenticate the user's personal channel... |
||
21 | */ |
||
22 | /* |
||
23 | Broadcast::channel( |
||
24 | 'App.User.*', function ($user, $userId) { |
||
25 | return (int) $user->id === (int) $userId; |
||
26 | } |
||
27 | );*/ |
||
28 | } |
||
29 | } |
||
30 |