Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
59 | */ |
||
60 | public function finalize() |
||
61 | { |
||
62 | $payload = [ |
||
63 | 'text' => $this->text, |
||
64 | 'link_names' => true, |
||
65 | 'unfurl_links' => true, |
||
66 | 'unfurl_media' => true, |
||
67 | 'mrkdwn' => true, |
||
68 | 'response_type' => $this->responseType, |
||
69 | ]; |
||
70 | |||
71 | $payload['attachments'] = $this->attachments; |
||
72 | |||
73 | $this->headers->set('Content-Type', 'application/json'); |
||
74 | |||
75 | $this->setContent(json_encode($payload)); |
||
76 | |||
80 |