Completed
Pull Request — master (#23)
by Manuel
05:57
created
app/Providers/AuthServiceProvider.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,6 @@
 block discarded – undo
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
      */
Please login to merge, or discard this patch.
app/Providers/EventServiceProvider.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,6 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
app/Providers/RouteServiceProvider.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,6 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
app/Providers/BroadcastServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.