| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | public function execute() |
||
| 35 | { |
||
| 36 | $message = $this->getMessage(); |
||
| 37 | $chat_id = $message->getChat()->getId(); |
||
| 38 | |||
| 39 | $data = [ |
||
| 40 | 'chat_id' => $chat_id, |
||
| 41 | 'text' => 'Write something:', |
||
| 42 | 'reply_markup' => new ForceReply(['selective' => false]), |
||
| 43 | ]; |
||
| 44 | |||
| 45 | return Request::sendMessage($data); |
||
| 46 | } |
||
| 48 |