| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 41 | public function __construct( |
||
| 42 | string $messageId, |
||
| 43 | int $sequence, |
||
| 44 | string $text = null, |
||
| 45 | string $quickReply = null, |
||
| 46 | array $attachments = [] |
||
| 47 | ) { |
||
| 48 | $this->messageId = $messageId; |
||
| 49 | $this->sequence = $sequence; |
||
| 50 | $this->text = $text; |
||
| 51 | $this->quickReply = $quickReply; |
||
| 52 | $this->attachments = $attachments; |
||
| 53 | } |
||
| 54 | |||
| 108 |