1
0
mirror of https://github.com/delight-im/PHP-Auth.git synced 2025-08-02 14:17:26 +02:00

Drop constant 'CONFIRMATION_REQUESTS_TTL_IN_SECONDS' in 'UserManager'

This commit is contained in:
Marco
2017-11-08 20:30:09 +01:00
parent ba4dc29ca5
commit a7a9d45302

View File

@@ -38,7 +38,6 @@ abstract class UserManager {
const SESSION_FIELD_ROLES = 'auth_roles'; const SESSION_FIELD_ROLES = 'auth_roles';
/** @var string session field for whether the user who is currently signed in (if any) has been remembered (instead of them having authenticated actively) */ /** @var string session field for whether the user who is currently signed in (if any) has been remembered (instead of them having authenticated actively) */
const SESSION_FIELD_REMEMBERED = 'auth_remembered'; const SESSION_FIELD_REMEMBERED = 'auth_remembered';
const CONFIRMATION_REQUESTS_TTL_IN_SECONDS = 60 * 60 * 24;
/** @var PdoDatabase the database connection to operate on */ /** @var PdoDatabase the database connection to operate on */
protected $db; protected $db;
@@ -308,7 +307,7 @@ abstract class UserManager {
$selector = self::createRandomString(16); $selector = self::createRandomString(16);
$token = self::createRandomString(16); $token = self::createRandomString(16);
$tokenHashed = \password_hash($token, \PASSWORD_DEFAULT); $tokenHashed = \password_hash($token, \PASSWORD_DEFAULT);
$expires = \time() + self::CONFIRMATION_REQUESTS_TTL_IN_SECONDS; $expires = \time() + 60 * 60 * 24;
try { try {
$this->db->insert( $this->db->insert(