From e23dd2a0394f23d83d0d92fb3fcf2f82aa61537c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Thu, 1 Feb 2024 04:44:07 +0100 Subject: [PATCH] Strict types Add locale member --- Command/CalendarCommand.php | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/Command/CalendarCommand.php b/Command/CalendarCommand.php index 525aa67..fb0cd02 100644 --- a/Command/CalendarCommand.php +++ b/Command/CalendarCommand.php @@ -29,16 +29,19 @@ class CalendarCommand extends Command { * * @var ManagerRegistry */ - protected $doctrine; + protected ManagerRegistry $doctrine; - ///Locale - protected $locale; + ///Router + protected RouterInterface $router; ///Slugger - protected $slugger; + protected SluggerUtil $slugger; ///Translator instance - protected $translator; + protected TranslatorInterface $translator; + + ///Locale + protected $locale; ///Lifetime string protected $lifetime; -- 2.41.0