From 566b72ec9e6ab4830ec340282d88d55a6b84c6e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Mon, 7 Apr 2025 11:31:52 +0200 Subject: [PATCH] Add $context parameter to export query generation This update introduces the $context parameter to the query generator method. It ensures additional contextual data can be passed and utilized, improving the flexibility of export generation logic. --- src/Bundle/ChillMainBundle/Export/ExportGenerator.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Bundle/ChillMainBundle/Export/ExportGenerator.php b/src/Bundle/ChillMainBundle/Export/ExportGenerator.php index 8f0cb040c..272aa0a2f 100644 --- a/src/Bundle/ChillMainBundle/Export/ExportGenerator.php +++ b/src/Bundle/ChillMainBundle/Export/ExportGenerator.php @@ -64,6 +64,7 @@ final readonly class ExportGenerator $this->retrieveUsedModifiers($data), $this->buildCenterReachableScopes($centers), $data['export'], + $context, ); if ($query instanceof \Doctrine\ORM\NativeQuery) {