Telegram.php 293 B

123456789101112131415
  1. <?php
  2. namespace App\Plugins\Telegram;
  3. use App\Services\TelegramService;
  4. abstract class Telegram {
  5. abstract protected function handle($message, $match);
  6. public $telegramService;
  7. public function __construct()
  8. {
  9. $this->telegramService = new TelegramService();
  10. }
  11. }