setName('talk:room:delete') ->setDescription('Deletes a room') ->addArgument( 'token', InputArgument::REQUIRED, 'Token of the room to delete' ); } protected function execute(InputInterface $input, OutputInterface $output): int { $token = $input->getArgument('token'); try { $room = $this->manager->getRoomByToken($token); } catch (RoomNotFoundException $e) { $output->writeln('Room not found.'); return 1; } if ($room->isFederatedConversation()) { $output->writeln('Room is a federated conversation.'); return 1; } if (!in_array($room->getType(), [Room::TYPE_GROUP, Room::TYPE_PUBLIC], true)) { $output->writeln('Room is no group call.'); return 1; } $this->roomService->deleteRoom($room); $output->writeln('Room successfully deleted.'); return 0; } #[\Override] public function completeArgumentValues($argumentName, CompletionContext $context) { switch ($argumentName) { case 'token': return $this->completeTokenValues($context); } return parent::completeArgumentValues($argumentName, $context); } }