Skip to content
Prev Previous commit
Next Next commit
Run cs:fix again for style fixes
Signed-off-by: Benjamin Frueh <[email protected]>
  • Loading branch information
benjaminfrueh committed Sep 20, 2025
commit 10ab5b56cd4d926a3a09de4f2f095feb5514d581
2 changes: 1 addition & 1 deletion lib/Db/SessionMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ public function deleteOldSessions(int $ageInSeconds): int {
->where($oldSessionsBuilder->expr()->lt('last_contact', $oldSessionsBuilder->createNamedParameter($ageThreshold)))
->setMaxResults($batchSize)
->executeQuery();

$sessionIds = array_map(function ($row) {
return (int)$row['id'];
}, $result->fetchAll());
Expand Down
Loading