registerCommand('hangman', [__CLASS__, 'startGame'], [ 'description' => 'play hangman. everyone in the channel can play', ]); echo __CLASS__ . " registered", PHP_EOL; } public static function startGame($msg, $args) { return "```" . self::$gallows . "```"; return "not done yet"; } }