3 namespace App\TwitchBot;
5 class GuessingLeaderboardCommand extends ChatCommand {
7 public function execute($args) {
8 $leaderboard = $this->channel->getGuessingLeaderboard();
10 foreach ($leaderboard as $entry) {
14 $msg .= $entry->name.' ('.$entry->score.')';
16 $this->messageChannel($msg);