From a497c3ffcae819c9d5a962948342937793712146 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Thu, 4 Apr 2024 22:37:44 +0200 Subject: [PATCH] fix return type of getFormData --- .../ChillPersonBundle/Tests/Export/Export/ListPersonTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bundle/ChillPersonBundle/Tests/Export/Export/ListPersonTest.php b/src/Bundle/ChillPersonBundle/Tests/Export/Export/ListPersonTest.php index 624bbf3cc..9c0eb538c 100644 --- a/src/Bundle/ChillPersonBundle/Tests/Export/Export/ListPersonTest.php +++ b/src/Bundle/ChillPersonBundle/Tests/Export/Export/ListPersonTest.php @@ -73,7 +73,7 @@ final class ListPersonTest extends AbstractExportTest public static function getFormData(): array { - yield ['address_date' => new \DateTimeImmutable('today')]; + return [['address_date' => new \DateTimeImmutable('today')]]; } public static function getModifiersCombination(): array