framework = $framework; $this->eventDispatcher = $eventDispatcher; parent::__construct(); } protected function configure(): void { $this ->setName('luumicore:autoCheckIn') ->setDescription('Automatically check in all open bookings within a defined time threshold before the slot time.') ; } protected function execute(InputInterface $input, OutputInterface $output): int { $this->framework->initialize(); /** @var AutoCheckInJob $wa_service */ $wa_service = System::getContainer()->get("vonrotenberg.cron.wa_auto_checkin"); $wa_service('cli'); return 0; } }