setName('app_api:app:disable'); $this->setDescription('Disable registered external app'); $this->addArgument('appid', InputArgument::REQUIRED); } protected function execute(InputInterface $input, OutputInterface $output): int { $appId = $input->getArgument('appid'); $exApp = $this->exAppService->getExApp($appId); if ($exApp === null) { $output->writeln(sprintf('ExApp %s not found. Failed to disable.', $appId)); return 1; } if (!$exApp->getEnabled()) { $output->writeln(sprintf('ExApp %s already disabled.', $appId)); return 0; } if ($this->service->disableExApp($exApp)) { $output->writeln(sprintf('ExApp %s successfully disabled.', $appId)); return 0; } $output->writeln(sprintf('Failed to disable ExApp %s.', $appId)); return 1; } }