Add support for message reaction count events

This commit is contained in:
netkas 2024-11-02 00:20:28 -04:00
parent ac431136de
commit ada256566e
3 changed files with 38 additions and 0 deletions

View file

@ -126,6 +126,11 @@
return UpdateEventType::INLINE_QUERY;
}
if($update->getMessageReactionCount() !== null)
{
return UpdateEventType::MESSAGE_REACTION_COUNT;
}
return UpdateEventType::UPDATE_EVENT;
}
}