1 | <?php |
||
19 | class NewchatmembersCommand extends SystemCommand |
||
20 | { |
||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | protected $name = 'Newchatmembers'; |
||
25 | |||
26 | /** |
||
27 | * @var string |
||
28 | */ |
||
29 | protected $description = 'New Chat Member(s)'; |
||
30 | |||
31 | /** |
||
32 | * @var string |
||
33 | */ |
||
34 | protected $version = '1.0.0'; |
||
35 | |||
36 | /** |
||
37 | * Command execute method |
||
38 | * |
||
39 | * @return mixed |
||
40 | * @throws \Longman\TelegramBot\Exception\TelegramException |
||
41 | */ |
||
42 | public function execute() |
||
49 | } |
||
50 |