@@ -18,7 +18,6 @@ |
||
| 18 | 18 | /** |
| 19 | 19 | * Register any application authentication / authorization services. |
| 20 | 20 | * |
| 21 | - * @param \Illuminate\Contracts\Auth\Access\Gate $gate |
|
| 22 | 21 | * |
| 23 | 22 | * @return void |
| 24 | 23 | */ |
@@ -21,7 +21,6 @@ |
||
| 21 | 21 | /** |
| 22 | 22 | * Register any other events for your application. |
| 23 | 23 | * |
| 24 | - * @param \Illuminate\Contracts\Events\Dispatcher $events |
|
| 25 | 24 | */ |
| 26 | 25 | public function boot() |
| 27 | 26 | { |
@@ -19,7 +19,6 @@ |
||
| 19 | 19 | /** |
| 20 | 20 | * Define your route model bindings, pattern filters, etc. |
| 21 | 21 | * |
| 22 | - * @param \Illuminate\Routing\Router $router |
|
| 23 | 22 | */ |
| 24 | 23 | public function boot() |
| 25 | 24 | { |
@@ -19,7 +19,7 @@ |
||
| 19 | 19 | /* |
| 20 | 20 | * Authenticate the user's personal channel... |
| 21 | 21 | */ |
| 22 | - Broadcast::channel('App.User.{userId}', function ($user, $userId) { |
|
| 22 | + Broadcast::channel('App.User.{userId}', function($user, $userId) { |
|
| 23 | 23 | return (int) $user->id === (int) $userId; |
| 24 | 24 | }); |
| 25 | 25 | } |