Path : /var/www/html/phkaymedia/vendor/irazasyed/telegram-bot-sdk/src/Answers/ |
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/Answers/Answerable.php |
<?php namespace Telegram\Bot\Answers; use Illuminate\Support\Str; use Telegram\Bot\Objects\Update; use Telegram\Bot\Traits\Telegram; /** * Class Answerable. * * @method mixed replyWithMessage($use_sendMessage_parameters) Reply Chat with a message. You can use all the sendMessage() parameters except chat_id. * @method mixed replyWithPhoto($use_sendPhoto_parameters) Reply Chat with a Photo. You can use all the sendPhoto() parameters except chat_id. * @method mixed replyWithAudio($use_sendAudio_parameters) Reply Chat with an Audio message. You can use all the sendAudio() parameters except chat_id. * @method mixed replyWithVideo($use_sendVideo_parameters) Reply Chat with a Video. You can use all the sendVideo() parameters except chat_id. * @method mixed replyWithVoice($use_sendVoice_parameters) Reply Chat with a Voice message. You can use all the sendVoice() parameters except chat_id. * @method mixed replyWithDocument($use_sendDocument_parameters) Reply Chat with a Document. You can use all the sendDocument() parameters except chat_id. * @method mixed replyWithSticker($use_sendSticker_parameters) Reply Chat with a Sticker. You can use all the sendSticker() parameters except chat_id. * @method mixed replyWithLocation($use_sendLocation_parameters) Reply Chat with a Location. You can use all the sendLocation() parameters except chat_id. * @method mixed replyWithChatAction($use_sendChatAction_parameters) Reply Chat with a Chat Action. You can use all the sendChatAction() parameters except chat_id. */ trait Answerable { use Telegram; /** * @var Update Holds an Update object. */ protected $update; /** * Magic Method to handle all ReplyWith Methods. * * @param $method * @param $arguments * * @return mixed|string */ public function __call($method, $arguments) { if (! Str::startsWith($method, 'replyWith')) { throw new \BadMethodCallException("Method [$method] does not exist."); } $reply_name = Str::studly(substr($method, 9)); $methodName = 'send' . $reply_name; if (! method_exists($this->telegram, $methodName)) { throw new \BadMethodCallException("Method [$method] does not exist."); } if (! $this->update->getChat()->has('id')) { throw new \BadMethodCallException("No chat available for reply with [$method]."); } $params = array_merge(['chat_id' => $this->update->getChat()->id], $arguments[0]); return call_user_func([$this->telegram, $methodName], $params); } /** * Returns Update object. * * @return Update */ public function getUpdate(): Update { return $this->update; } }