| Total Complexity | 1 |
| Total Lines | 38 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | class ChatsCommand extends AdminCommand |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | protected $name = 'chats'; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var string |
||
| 29 | */ |
||
| 30 | protected $description = 'List or search all chats stored by the bot'; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @var string |
||
| 34 | */ |
||
| 35 | protected $usage = '/chats, /chats * or /chats <search string>'; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @var string |
||
| 39 | */ |
||
| 40 | protected $version = '1.2.0'; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @var bool |
||
| 44 | */ |
||
| 45 | protected $need_mysql = true; |
||
| 46 | |||
| 47 | /** |
||
| 48 | * Command execute method |
||
| 49 | * |
||
| 50 | * @return ServerResponse |
||
| 51 | * @throws TelegramException |
||
| 52 | */ |
||
| 53 | public function execute(): ServerResponse |
||
| 60 |