From: Raphaƫl Gertz Date: Thu, 1 Feb 2024 03:44:07 +0000 (+0100) Subject: Strict types X-Git-Tag: 0.3.0~99 X-Git-Url: https://git.rapsys.eu/airbundle/commitdiff_plain/e23dd2a0394f23d83d0d92fb3fcf2f82aa61537c Strict types Add locale member --- 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;