Skip to content

Commit

Permalink
[HttpFoundation] remove legacy session lifetime logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobion committed Oct 11, 2021
1 parent 143ecb3 commit 54a578b
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,6 @@ class PdoSessionHandler extends AbstractSessionHandler
*/
public const LOCK_TRANSACTIONAL = 2;

private const MAX_LIFETIME = 315576000;

private \PDO $pdo;

/**
Expand Down Expand Up @@ -362,10 +360,9 @@ public function close(): bool
$this->gcCalled = false;

// delete the session records that have expired
$sql = "DELETE FROM $this->table WHERE $this->lifetimeCol < :time AND $this->lifetimeCol > :min";
$sql = "DELETE FROM $this->table WHERE $this->lifetimeCol < :time";
$stmt = $this->pdo->prepare($sql);
$stmt->bindValue(':time', time(), \PDO::PARAM_INT);
$stmt->bindValue(':min', self::MAX_LIFETIME, \PDO::PARAM_INT);
$stmt->execute();
}

Expand Down

0 comments on commit 54a578b

Please sign in to comment.