aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Repository/NotificationRepository.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/CoreBundle/Repository/NotificationRepository.php')
-rw-r--r--src/Wallabag/CoreBundle/Repository/NotificationRepository.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Repository/NotificationRepository.php b/src/Wallabag/CoreBundle/Repository/NotificationRepository.php
new file mode 100644
index 00000000..eb8dbb3e
--- /dev/null
+++ b/src/Wallabag/CoreBundle/Repository/NotificationRepository.php
@@ -0,0 +1,17 @@
1<?php
2
3namespace Wallabag\CoreBundle\Repository;
4
5use Doctrine\ORM\EntityRepository;
6
7class NotificationRepository extends EntityRepository {
8
9 public function markAllAsReadForUser($userId) {
10 return $this->getEntityManager()->createQueryBuilder()
11 ->update('WallabagCoreBundle:Notification', 'n')
12 ->set('n.read', true)
13 ->where('n.user = :userId')->setParameter('userId', $userId)
14 ->getQuery()
15 ->getResult();
16 }
17}