getConfig()->get('cleanupRemindersPeriod', $this->cleanupRemindersPeriod); $datetime = new \DateTime(); $datetime->modify($period); $pdo = $this->getEntityManager()->getPDO(); $query = "DELETE FROM `reminder` WHERE DATE(remind_at) < " . $pdo->quote($datetime->format('Y-m-d')); $sth = $pdo->prepare($query); $sth->execute(); } }