| Total Complexity | 2 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | trait SendsMessages |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Send reply to user. |
||
| 14 | * |
||
| 15 | * @param string|null $text |
||
| 16 | * |
||
| 17 | * @return PendingReply |
||
| 18 | */ |
||
| 19 | protected function reply(string $text = null): PendingReply |
||
| 26 | 3 | } |
|
| 27 | |||
| 28 | /** |
||
| 29 | * Send attachment to user. |
||
| 30 | * |
||
| 31 | * @param Attachment $attachment |
||
| 32 | * |
||
| 33 | * @return PendingReply |
||
| 34 | */ |
||
| 35 | protected function sendAttachment(Attachment $attachment): PendingReply |
||
| 44 |