From 96cbb45e612c3cbe3aab652a877daabb8911587f Mon Sep 17 00:00:00 2001 From: Matthieu Date: Wed, 18 Mar 2026 17:47:31 +0100 Subject: [PATCH] fix(api) : fix mark-all-read using undefined executeStatement on DQL query Co-Authored-By: Claude Opus 4.6 (1M context) --- src/Repository/NotificationRepository.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Repository/NotificationRepository.php b/src/Repository/NotificationRepository.php index abe47fb..76d642d 100644 --- a/src/Repository/NotificationRepository.php +++ b/src/Repository/NotificationRepository.php @@ -40,7 +40,7 @@ class NotificationRepository extends ServiceEntityRepository ->andWhere('n.isRead = false') ->setParameter('user', $user) ->getQuery() - ->executeStatement() + ->execute() ; } }