From 5fc5369db6aa431acd8cdd95cabb2f0852ffa9a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Mon, 23 Sep 2024 14:25:03 +0200 Subject: [PATCH] in constructor for AccompanyingCourseDocumentRepository.php, do not create a property --- .../Repository/AccompanyingCourseDocumentRepository.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bundle/ChillDocStoreBundle/Repository/AccompanyingCourseDocumentRepository.php b/src/Bundle/ChillDocStoreBundle/Repository/AccompanyingCourseDocumentRepository.php index 7033a53c9..3590aae7f 100644 --- a/src/Bundle/ChillDocStoreBundle/Repository/AccompanyingCourseDocumentRepository.php +++ b/src/Bundle/ChillDocStoreBundle/Repository/AccompanyingCourseDocumentRepository.php @@ -23,7 +23,7 @@ class AccompanyingCourseDocumentRepository implements ObjectRepository, Associat { private readonly EntityRepository $repository; - public function __construct(private readonly EntityManagerInterface $em) + public function __construct(EntityManagerInterface $em) { $this->repository = $em->getRepository(AccompanyingCourseDocument::class); }