setName('talk:stun:list') ->setDescription('List STUN servers.'); } protected function execute(InputInterface $input, OutputInterface $output): int { $config = $this->config->getAppValue('spreed', 'stun_servers'); $servers = json_decode($config); if (!is_array($servers)) { $servers = []; } $this->writeArrayInOutputFormat($input, $output, $servers); return 0; } }