This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Description
- AccessTokenRepository : Lines 71 and 72
':revoked' => (int)false,
':expires_at' => date("Y-m-d H:i:s", $accessTokenEntity->getExpiryDateTime()->getTimestamp())
- RefreshTokenRepository : lines 32 and 33
$sth->bindValue(':revoked', (int)false);
$sth->bindValue(':expires_at', date("Y-m-d H:i:s", $refreshTokenEntity->getExpiryDateTime()->getTimestamp()));
i have to make that, to persist the record without error.
Thanks.