mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-02 04:53:49 +00:00
Update initiateQuery method to include ExportGenerationContext
The `initiateQuery` method now consistently incorporates the `ExportGenerationContext` parameter across various export classes, improving functionality and standardization. This change ensures compatibility and alignment with the expected method signature.
This commit is contained in:
@@ -99,7 +99,7 @@ class SavedExportOptionsMigrator
|
||||
return $response;
|
||||
}
|
||||
}
|
||||
} catch (\JsonException $e) {
|
||||
} catch (\JsonException) {
|
||||
return $formData;
|
||||
}
|
||||
}
|
||||
|
@@ -646,7 +646,7 @@ class DummyExport implements ExportInterface
|
||||
return 'dummy';
|
||||
}
|
||||
|
||||
public function initiateQuery(array $requiredModifiers, array $acl, array $data = [])
|
||||
public function initiateQuery(array $requiredModifiers, array $acl, array $data, \Chill\MainBundle\Export\ExportGenerationContext $context): QueryBuilder
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
Reference in New Issue
Block a user