content = $content; } /** * @return array */ public function formatForReply(): array { return [ 'MsgType' => 'text', 'Content' => $this->content ]; } /** * @return array */ public function formatForResponse(): array { return [ 'msgtype' => 'text', 'text' => [ 'content' => $this->content ] ]; } }