Completed
Push — develop ( 574df4...10ba76 )
by Wisoot
06:15
created
src/Providers/JwtGuardServiceProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
      */
42 42
     private function publishConfig()
43 43
     {
44
-        $configFile = __DIR__ . '/../config/jwt.php';
44
+        $configFile = __DIR__.'/../config/jwt.php';
45 45
 
46 46
         $this->publishes([
47 47
             $configFile => config_path('jwt.php')
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     private function publishMigration()
57 57
     {
58 58
         $this->publishes([
59
-            __DIR__ . '/../database/migrations/' => database_path('migrations')
59
+            __DIR__.'/../database/migrations/' => database_path('migrations')
60 60
         ], 'migrations');
61 61
     }
62 62
 
@@ -67,8 +67,8 @@  discard block
 block discarded – undo
67 67
     {
68 68
         $this->app->bind(TokenManagerContract::class, TokenManager::class);
69 69
 
70
-        $this->app->rebinding('request', function ($app, $request) {
71
-            $request->setUserResolver(function ($guard = null) {
70
+        $this->app->rebinding('request', function($app, $request) {
71
+            $request->setUserResolver(function($guard = null) {
72 72
                 return auth()->guard($guard)->user();
73 73
             });
74 74
         });
Please login to merge, or discard this patch.