fix(api) : fix mark-all-read using undefined executeStatement on DQL query
All checks were successful
Auto Tag Develop / tag (push) Successful in 5s

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Matthieu
2026-03-18 17:47:31 +01:00
parent a8b899f7c4
commit 96cbb45e61

View File

@@ -40,7 +40,7 @@ class NotificationRepository extends ServiceEntityRepository
->andWhere('n.isRead = false')
->setParameter('user', $user)
->getQuery()
->executeStatement()
->execute()
;
}
}