| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 11 | public function run() |
||
| 12 | { |
||
| 13 | (new SendChatAction()) |
||
| 14 | ->setChatId($this->getChatId()) |
||
| 15 | ->setAction(SendChatAction::ACTION_TYPING) |
||
| 16 | ->trigger(); |
||
| 17 | |||
| 18 | sleep(3); |
||
| 19 | |||
| 20 | (new SendMessage()) |
||
| 21 | ->setChatId($this->getChatId()) |
||
| 22 | ->setText('Test message is here') |
||
| 23 | ->trigger(); |
||
| 24 | } |
||
| 25 | } |
||
| 26 |