feedService = $feedService; } /** * Configure command * * @return void */ protected function configure() { $this->setName('news:feed:delete') ->setDescription('Remove a feed') ->addArgument('user-id', InputArgument::REQUIRED, 'User to remove the feed from') ->addArgument('feed-id', InputArgument::REQUIRED, 'Feed ID', null); } /** * Execute command * * @param InputInterface $input * @param OutputInterface $output * * @return int */ protected function execute(InputInterface $input, OutputInterface $output): int { $user = $input->getArgument('user-id'); $id = (int) $input->getArgument('feed-id'); $this->feedService->delete($user, $id); return 0; } }