TeleBot
Telegram Bot Framework for creating any bots
Created By Arash Abedi
Edited Message Handler (edit messages)
all updates by type edited_message come to this class and you can work on every messages update comfortably.
see edited_message update params on telegram doc
when edited_message update will be received, the run() method be called and your all code, will execute in run() method
write your codes in run() method
example
you can controll new updates :
<?php
namespace App\Controllers;
use App\Modules\ExampleModule;
class EditedMessageHandler{
public function run(){
//after edit a message ,the bot will send you edited message
bot()->sendMessage(['text'=>'new text: '.message()->getText()]);
}
}