We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b6a9ed commit 9baae34Copy full SHA for 9baae34
src/Command/PurgeTokenCommand.php
@@ -70,13 +70,13 @@ private function clear()
70
71
$token = Db::connection(config('oauth.provider', 'default'))
72
->table('oauth_access_tokens')
73
- // ->where('expires_at', '<=', $now)
+ ->where('expires_at', '<=', $now)
74
->orWhere('revoked', 1)
75
->delete();
76
77
$refresh = Db::connection(config('oauth.provider', 'default'))
78
->table('oauth_refresh_tokens')
79
80
81
82
}
0 commit comments