Path : /var/www/html/phkaymedia/vendor/irazasyed/telegram-bot-sdk/src/Commands/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : /var/www/html/phkaymedia/vendor/irazasyed/telegram-bot-sdk/src/Commands/HelpCommand.php |
<?php namespace Telegram\Bot\Commands; /** * Class HelpCommand. */ class HelpCommand extends Command { /** * @var string Command Name */ protected $name = 'help'; /** * @var array Command Aliases */ protected $aliases = ['listcommands']; /** * @var string Command Description */ protected $description = 'Help command, Get a list of commands'; /** * {@inheritdoc} */ public function handle() { $commands = $this->telegram->getCommands(); $text = ''; foreach ($commands as $name => $handler) { /* @var Command $handler */ $text .= sprintf('/%s - %s' . PHP_EOL, $name, $handler->getDescription()); } $this->replyWithMessage(compact('text')); } }