3 namespace App\TwitchBot;
5 class RunnerCommand extends ChatCommand {
7 public function execute($args) {
8 $episode = $this->channel->getCurrentEpisode();
11 foreach ($episode->players as $player) {
12 $link = $player->getStreamLink();
14 $link = $player->getName();
20 $message = 'Runner: '.implode(' ', $links);
21 $this->messageChannel($message);