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 c640bf0 commit e9eea7dCopy full SHA for e9eea7d
src/Storage/FluentAuthCode.php
@@ -27,6 +27,7 @@ public function get($code)
27
{
28
$result = $this->getConnection()->table('oauth_auth_codes')
29
->where('oauth_auth_codes.id', $code)
30
+ ->where('oauth_auth_codes.expire_time', '>=', time())
31
->first();
32
33
if (is_null($result)) {
0 commit comments