setInterval(60 * 60 * 24); $this->setTimeSensitivity(self::TIME_INSENSITIVE); } protected function run($argument): void { // Delete all entries more than 48 hours old $time = $this->time->getTime() - (48 * 3600); $qb = $this->connection->getQueryBuilder(); $qb->delete('bruteforce_attempts') ->where($qb->expr()->lt('occurred', $qb->createNamedParameter($time), IQueryBuilder::PARAM_INT)); $qb->executeStatement(); } }