This commit is contained in:
2025-04-08 14:09:16 +02:00
parent 3a904e8ea1
commit a2713041da
11 changed files with 27 additions and 51 deletions

View File

@@ -38,13 +38,10 @@ interface AggregatorInterface extends ModifierInterface
/**
* @param D $formData
* @return array
*/
public function normalizeFormData(array $formData): array;
/**
* @param array $formData
* @param int $fromVersion
* @return D
*/
public function denormalizeFormData(array $formData, int $fromVersion): array;
@@ -106,6 +103,7 @@ interface AggregatorInterface extends ModifierInterface
* this function will return `array('count_id')`.
*
* @param D $data the data from the export's form (added by self::buildForm)
*
* @return list<string>
*/
public function getQueryKeys(array $data): array;