mirror of
				https://github.com/v2board/v2board.git
				synced 2025-11-01 01:41:47 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			293 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			293 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Plugins\Telegram;
 | |
| 
 | |
| use App\Services\TelegramService;
 | |
| 
 | |
| abstract class Telegram {
 | |
|     abstract protected function handle($message, $match);
 | |
|     public $telegramService;
 | |
| 
 | |
|     public function __construct()
 | |
|     {
 | |
|         $this->telegramService = new TelegramService();
 | |
|     }
 | |
| }
 |