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