@@ -34,7 +34,7 @@ |
||
34 | 34 | */ |
35 | 35 | public function up() |
36 | 36 | { |
37 | - Schema::create($this->table, function (Blueprint $table) { |
|
37 | + Schema::create($this->table, function(Blueprint $table) { |
|
38 | 38 | $table->increments('id'); |
39 | 39 | $table->integer($this->foreignKey)->unsigned(); |
40 | 40 | $table->string('token')->index(); |
@@ -183,7 +183,7 @@ |
||
183 | 183 | */ |
184 | 184 | protected function hasValidCredentials($user, $credentials) |
185 | 185 | { |
186 | - return ! is_null($user) && $this->provider->validateCredentials($user, $credentials); |
|
186 | + return !is_null($user) && $this->provider->validateCredentials($user, $credentials); |
|
187 | 187 | } |
188 | 188 | |
189 | 189 | /** |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | $this->publishConfig(); |
36 | 36 | |
37 | 37 | $this->publishes([ |
38 | - __DIR__ . '/../database/migrations/' => database_path('migrations') |
|
38 | + __DIR__.'/../database/migrations/' => database_path('migrations') |
|
39 | 39 | ], 'migrations'); |
40 | 40 | } |
41 | 41 | |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | */ |
47 | 47 | private function publishConfig() |
48 | 48 | { |
49 | - $configFile = __DIR__ . '/../config/jwt_guard.php'; |
|
49 | + $configFile = __DIR__.'/../config/jwt_guard.php'; |
|
50 | 50 | |
51 | 51 | $this->publishes([ |
52 | 52 | $configFile => config_path('jwt_guard.php') |
@@ -66,8 +66,8 @@ discard block |
||
66 | 66 | |
67 | 67 | $this->app->bind(TokenManagerContract::class, TokenManager::class); |
68 | 68 | |
69 | - $this->app->rebinding('request', function ($app, $request) { |
|
70 | - $request->setUserResolver(function ($guard = null) { |
|
69 | + $this->app->rebinding('request', function($app, $request) { |
|
70 | + $request->setUserResolver(function($guard = null) { |
|
71 | 71 | return auth()->guard($guard)->user(); |
72 | 72 | }); |
73 | 73 | }); |
@@ -61,7 +61,7 @@ |
||
61 | 61 | } |
62 | 62 | |
63 | 63 | if (empty($this->jti)) { |
64 | - $this->jti = md5("{$this->sub}.{$this->iat}." . rand(1000, 1999)); |
|
64 | + $this->jti = md5("{$this->sub}.{$this->iat}.".rand(1000, 1999)); |
|
65 | 65 | } |
66 | 66 | } |
67 | 67 |