title = $title; $this->url = $url; $this->description = $description; $this->picUrl = $picUrl; $this->btnTxt = $btnTxt; } /** * @return array */ public function formatForReply(): array { return [ 'Title' => $this->title, 'Description' => $this->description, 'PicUrl' => $this->picUrl, 'Url' => $this->url ]; } /** * @return array */ public function formatForResponse(): array { return [ 'title' => $this->title, 'description' => $this->description, 'url' => $this->url, 'picurl' => $this->picUrl, 'btntxt' => $this->btnTxt ]; } }