framework = $framework; parent::__construct(); } protected function configure(): void { $this ->setName('luumicore:sendCheckInNotifications') ->setDescription('Sends notifications about completed check-ins.') ; } protected function execute(InputInterface $input, OutputInterface $output): int { $this->framework->initialize(); /** @var SendCheckInNotificationJob $wa_service */ $wa_service = System::getContainer()->get("vonrotenberg.cron.wa_checkin_notifications"); $wa_service('cli'); return 0; } }