Skip to content
Snippets Groups Projects
Commit eab4abec authored by Jonathan Foucher's avatar Jonathan Foucher
Browse files

cs fix

parent 28e3e650
No related branches found
No related tags found
No related merge requests found
......@@ -137,11 +137,11 @@ class Notification extends CRUDRepository implements Repository\Notification
}
// If notifications are active, delete old notifications
$qb = $this->getManager()->createQueryBuilder();
$qb->where('o.createdAt < :date');
$prevDate = new \DateTime();
$prevDate->modify('-'.$this->saveNotificationsDuration);
$prevDate->modify('-' . $this->saveNotificationsDuration);
$qb->setParameter('date', $prevDate);
$qb->delete('App\Domain\Notification\Model\NotificationUser as o');
$qb->getQuery()->execute();
......@@ -149,7 +149,7 @@ class Notification extends CRUDRepository implements Repository\Notification
$qb = $this->getManager()->createQueryBuilder();
$qb->where('o.createdAt < :date');
$prevDate = new \DateTime();
$prevDate->modify('-'.$this->saveNotificationsDuration);
$prevDate->modify('-' . $this->saveNotificationsDuration);
$qb->setParameter('date', $prevDate);
$qb->delete('App\Domain\Notification\Model\Notification as o');
$qb->getQuery()->execute();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment