Slackwolf\Game\Command\StatusCommand::fire PHP Method

fire() public method

public fire ( )
    public function fire()
    {
        $client = $this->client;
        if (!$this->gameManager->hasGame($this->channel)) {
            $client->getChannelGroupOrDMByID($this->channel)->then(function (ChannelInterface $channel) use($client) {
                $client->send(":warning: Run this command in the game channel.", $channel);
            });
            return;
        }
        // get status formatter
        $statusMsg = GameStatusFormatter::format($this->game);
        $this->gameManager->sendMessageToChannel($this->game, $statusMsg);
    }
StatusCommand