for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Longman\TelegramBot\Entities;
/**
* This object represents reaction changes on a message with anonymous reactions.
*
* @link https://core.telegram.org/bots/api#messagereactioncountupdated
* @method Chat getChat() The chat containing the message
* @method int getMessageId() Unique message identifier inside the chat
* @method int getDate() Date of the change in Unix time
* @method ReactionCount[] getReactions() List of reactions that are present on the message
*/
class MessageReactionCountUpdated extends Entity
{
protected function subEntities(): array
return [
'chat' => Chat::class,
'reactions' => [ReactionCount::class],
];
}