Completed
Push — master ( acf431...b913c8 )
by Anton
02:48
created
app/Providers/RouteServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
         Route::group([
64 64
             'middleware' => 'web',
65 65
             'namespace' => $this->namespace,
66
-        ], function () {
66
+        ], function() {
67 67
             require base_path('routes/web.php');
68 68
         });
69 69
     }
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
             'middleware' => 'api',
82 82
             'namespace' => $this->namespace,
83 83
             'prefix' => 'api',
84
-        ], function () {
84
+        ], function() {
85 85
             require base_path('routes/api.php');
86 86
         });
87 87
     }
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
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
         /*
24 24
          * Authenticate the user's personal channel...
25 25
          */
26
-        Broadcast::channel('App.User.*', function ($user, $userId) {
26
+        Broadcast::channel('App.User.*', function($user, $userId) {
27 27
             return (int)$user->id === (int)$userId;
28 28
         });
29 29
     }
Please login to merge, or discard this patch.
app/Auth/AuthServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,14 +15,14 @@
 block discarded – undo
15 15
      */
16 16
     protected function registerAuthenticator()
17 17
     {
18
-        $this->app->bind('auth', function ($app) {
18
+        $this->app->bind('auth', function($app) {
19 19
             // Once the authentication service has actually been requested by the developer
20 20
             // we will set a variable in the application indicating such. This helps us
21 21
             // know that we need to set any queued cookies in the after event later.
22 22
             $app['auth.loaded'] = true;
23 23
             return new AuthManager($app);
24 24
         });
25
-        $this->app->singleton('auth.driver', function ($app) {
25
+        $this->app->singleton('auth.driver', function($app) {
26 26
 //            return $app['auth']->driver();
27 27
             return $app['auth']->guard();
28 28
         });
Please login to merge, or discard this patch.