Cleans up the table by removing all expired locks.
private function prune() : void { $sql = "DELETE FROM {$this->table} WHERE {$this->expirationCol} <= {$this->getCurrentTimestampStatement()}"; $this->conn ->executeStatement($sql); }