From 6cb085f5f7a0a74f053c81a822e86c87df1c22e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Fri, 19 Jul 2024 13:39:36 +0200 Subject: [PATCH] fix cs --- src/Bundle/ChillMainBundle/Cron/CronJobInterface.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Bundle/ChillMainBundle/Cron/CronJobInterface.php b/src/Bundle/ChillMainBundle/Cron/CronJobInterface.php index 9194e6c53..a81ec37fd 100644 --- a/src/Bundle/ChillMainBundle/Cron/CronJobInterface.php +++ b/src/Bundle/ChillMainBundle/Cron/CronJobInterface.php @@ -25,6 +25,7 @@ interface CronJobInterface * If data is returned, this data is passed as argument on the next execution * * @param array> $lastExecutionData the data which was returned from the previous execution + * * @return array>|null optionally return an array with the same data than the previous execution */ public function run(array $lastExecutionData): ?array;