Path : /var/www/html/phkaymedia/vendor/irazasyed/telegram-bot-sdk/src/Traits/ |
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/Traits/Telegram.php |
<?php namespace Telegram\Bot\Traits; use Telegram\Bot\Api; /** * Class Telegram. */ trait Telegram { /** @var Api Holds the Super Class Instance. */ protected $telegram = null; /** * Returns Super Class Instance. * * @return Api */ public function getTelegram(): Api { return $this->telegram; } /** * Set Telegram Api Instance. * * @param Api $telegram * * @return $this */ public function setTelegram(Api $telegram) { $this->telegram = $telegram; return $this; } }