Skip to content

Commit 847af6d

Browse files
typo fix
1 parent 74796b7 commit 847af6d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/JWTRedisServiceProvider.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ 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()
4545
{
46-
// Override JWT Guard for without DB query..
46+
// Override JWT Guard for laravel-jwtredis..
4747
Auth::extend('jwt_redis_guard', function ($app, $name, array $config) {
4848

4949
// Return an instance of Illuminate\Contracts\Auth\Guard...

0 commit comments

Comments
 (0)