From 5283eddb15e80889be1df1f1486b164808474ea5 Mon Sep 17 00:00:00 2001 From: Julie Lenaerts Date: Mon, 26 May 2025 14:54:47 +0200 Subject: [PATCH] Class cannot be final if you want to use lazy proxy --- src/Bundle/ChillMainBundle/Cron/CronManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bundle/ChillMainBundle/Cron/CronManager.php b/src/Bundle/ChillMainBundle/Cron/CronManager.php index e32e44817..51e560df8 100644 --- a/src/Bundle/ChillMainBundle/Cron/CronManager.php +++ b/src/Bundle/ChillMainBundle/Cron/CronManager.php @@ -37,7 +37,7 @@ use Psr\Log\LoggerInterface; * If a tasks is "forced", there is no test about eligibility of the task (the `canRun` method is not called), * and the last task execution is not recorded. */ -final readonly class CronManager implements CronManagerInterface +class CronManager implements CronManagerInterface { private const LOG_PREFIX = '[cron manager] ';