Skip to content

Commit 756f0af

Browse files
styleci fix
1 parent 847af6d commit 756f0af

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/Http/Middleware/Authenticate.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ public function handle($request, Closure $next)
2828
}
2929

3030
if (config('jwtredis.check_banned_user')) {
31-
3231
$this->setAuthedUser($request);
3332

3433
if (!$request->authedUser->checkUserStatus()) {

src/JWTRedisServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ public function boot()
3636

3737
protected function publishConfig()
3838
{
39-
$this->mergeConfigFrom(__DIR__ . '/config/jwtredis.php', 'jwtredis');
39+
$this->mergeConfigFrom(__DIR__.'/config/jwtredis.php', 'jwtredis');
4040

41-
$this->publishes([__DIR__ . '/config/jwtredis.php' => config_path('jwtredis.php')], 'config');
41+
$this->publishes([__DIR__.'/config/jwtredis.php' => config_path('jwtredis.php')], 'config');
4242
}
4343

4444
protected function overrideJWTGuard()

0 commit comments

Comments
 (0)