. */ namespace Sikofitt\SamsungTV\Console\Command; use Sikofitt\SamsungTV\Actions\Actions; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; /** * Command to change channels */ class ChannelCommand extends Command { /** * {@inheritDoc} * * @throws \Symfony\Component\Console\Exception\InvalidArgumentException */ protected function configure(): void { $this->setName('channel') ->setDescription('change the channel') ->addArgument( 'channel', InputArgument::REQUIRED, 'chanel to change to' ); } /** * {@inheritDoc} * * @throws \Symfony\Component\Console\Exception\InvalidArgumentException */ protected function execute(InputInterface $input, OutputInterface $output): void { $io = new SymfonyStyle($input, $output); $channel = $input->getArgument('channel'); $actions = new Actions('10.5.4.18'); $actions->changeChannel($channel); $io->success('Changed the Channel to ' . $channel); } }